blob: a4c42f468395f59a5562e2d5337875435352c570 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
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])
|