blob: 741a899b49cd3b89df5f2d6ecb4800b9d3cb0129 [file] [log] [blame]
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', 'pngdep'])
executable('prog', 'prog.c',
dependencies : [pngdep, luadep])