aboutsummaryrefslogtreecommitdiff
path: root/manual tests/2 multiwrap/meson.build
blob: 28f4e2b14d78ccc00411b2c1eef194ac3259aa44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
project('multiwrap', 'c')

# Using multiple downloaded projects for great justice.

add_global_arguments('-std=c99', language : 'c')

luap = subproject('lua')
pngp = subproject('libpng')

executable('prog', 'prog.c',
include_directories : [pngp.get_variable('incdir'), luap.get_variable('incdir')],
link_with :[pngp.get_variable('libpng'), luap.get_variable('lualib')],
link_args : '-lm')