add initial build setup
This commit is contained in:
commit
fec92d83ed
18
meson.build
Normal file
18
meson.build
Normal 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
3
src/main.c
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
int main(void) {
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Reference in a new issue