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.
22 lines
580 B
22 lines
580 B
7 years ago
|
project('built library', 'c')
|
||
|
|
||
|
cc = meson.get_compiler('c')
|
||
6 years ago
|
|
||
|
if host_machine.system() != 'cygwin'
|
||
|
# bar_in_system has undefined symbols, but still must be found
|
||
|
bar_system_dep = cc.find_library('bar_in_system')
|
||
|
endif
|
||
|
|
||
7 years ago
|
foo_system_dep = cc.find_library('foo_in_system')
|
||
6 years ago
|
|
||
7 years ago
|
faa_pkg_dep = dependency('faa_pkg')
|
||
|
|
||
|
l = shared_library('bar_built', 'bar.c',
|
||
7 years ago
|
install: true,
|
||
7 years ago
|
dependencies : [foo_system_dep, faa_pkg_dep])
|
||
|
|
||
6 years ago
|
if host_machine.system() == 'darwin'
|
||
|
e = executable('prog', 'prog.c', link_with: l, install: true)
|
||
|
test('testprog', e)
|
||
|
endif
|