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.
16 lines
541 B
16 lines
541 B
5 years ago
|
project('persubproject options', 'c',
|
||
|
default_options : ['default_library=both',
|
||
4 years ago
|
'werror=true',
|
||
|
'warning_level=3'])
|
||
5 years ago
|
|
||
|
assert(get_option('default_library') == 'both', 'Parent default_library should be "both"')
|
||
|
assert(get_option('werror'))
|
||
4 years ago
|
assert(get_option('warning_level') == '3')
|
||
5 years ago
|
|
||
|
# Check it build both by calling a method only both_libraries target implement
|
||
|
lib = library('lib1', 'foo.c')
|
||
|
lib.get_static_lib()
|
||
|
|
||
|
subproject('sub1')
|
||
|
subproject('sub2', default_options : ['default_library=static'])
|