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.

11 lines
366 B

project('sub2', 'c',
default_options : ['default_library=shared',
'werror=false'])
assert(get_option('default_library') == 'static', 'Parent should override default_library')
assert(not get_option('werror'))
# If it doesn't build only a static library, it would make target name clash.
library('lib1', 'foo.c')
shared_library('lib1', 'foo.c')