The Meson Build System
http://mesonbuild.com/
8 lines
349 B
8 lines
349 B
7 years ago
|
project('yield_options', 'c')
|
||
|
|
||
|
subproject('sub')
|
||
|
|
||
|
assert(get_option('unshared_option') == 'one', 'Unshared option has wrong value in superproject.')
|
||
7 years ago
|
assert(get_option('shared_option') == 'two', 'Shared option has wrong value in superproject..')
|
||
|
assert(get_option('wrongtype_option') == 'three', 'Wrongtype option has wrong value in superproject..')
|