initial commit, added basic build system with conan/meson, dependency on fftw3

This commit is contained in:
Florent Leclercq 2023-03-17 12:13:32 +01:00
commit bf6fa7231e
5 changed files with 50 additions and 0 deletions

13
src/main.c Normal file
View file

@ -0,0 +1,13 @@
#include <stdio.h>
#include <fftw3.h>
#define PROJECT_NAME "Elemmire"
int main(int argc, char **argv) {
if(argc != 1) {
printf("%s takes no arguments.\n", argv[0]);
return 1;
}
printf("This is project %s.\n", PROJECT_NAME);
return 0;
}