blob: f1226b8ba513cf98d8152935ce0ad3e329103da9 [file] [log] [blame]
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')