The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
334 B
13 lines
334 B
5 years ago
|
project('multiwrap', 'c',
|
||
|
default_options : 'c_std=c99')
|
||
|
|
||
|
# Using multiple downloaded projects for great justice.
|
||
|
|
||
|
cc = meson.get_compiler('c')
|
||
|
|
||
|
luadep = dependency('lua', fallback : ['lua', 'lua_dep'])
|
||
|
pngdep = dependency('libpng', fallback : ['libpng', 'png_dep'])
|
||
|
|
||
|
executable('prog', 'prog.c',
|
||
|
dependencies : [pngdep, luadep])
|