19 lines
203 B
Meson
19 lines
203 B
Meson
|
project(
|
||
|
'buddhabrot',
|
||
|
'c',
|
||
|
version : '0.1',
|
||
|
default_options : [
|
||
|
'warning_level=3',
|
||
|
'c_std=c99',
|
||
|
],
|
||
|
)
|
||
|
|
||
|
sources = [
|
||
|
'src/main.c',
|
||
|
]
|
||
|
|
||
|
executable(
|
||
|
'buddhabrot',
|
||
|
sources : sources,
|
||
|
)
|