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.
12 lines
248 B
12 lines
248 B
6 years ago
|
project('myexe', 'c')
|
||
|
|
||
|
sub1 = subproject('sub1')
|
||
|
sub1_dep = sub1.get_variable('sub1_dep')
|
||
|
|
||
|
sub2 = subproject('sub2')
|
||
|
sub2_dep = sub2.get_variable('sub2_dep')
|
||
|
|
||
|
executable('myexe',
|
||
|
'myexe.c',
|
||
|
dependencies: [sub1_dep, sub2_dep])
|