aboutsummaryrefslogtreecommitdiff
path: root/manual tests/2 multiwrap/meson.build
blob: 741a899b49cd3b89df5f2d6ecb4800b9d3cb0129 (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', 'pngdep'])

executable('prog', 'prog.c',
  dependencies : [pngdep, luadep])