add initial build setup

This commit is contained in:
Bruno BELANYI 2020-11-10 16:23:02 +01:00
commit fec92d83ed
2 changed files with 21 additions and 0 deletions

18
meson.build Normal file
View File

@ -0,0 +1,18 @@
project(
'buddhabrot',
'c',
version : '0.1',
default_options : [
'warning_level=3',
'c_std=c99',
],
)
sources = [
'src/main.c',
]
executable(
'buddhabrot',
sources : sources,
)

3
src/main.c Normal file
View File

@ -0,0 +1,3 @@
int main(void) {
return 0;
}