8 lines
344 B
Meson
8 lines
344 B
Meson
project('yield_options')
|
|
|
|
subproject('sub')
|
|
|
|
assert(get_option('unshared_option') == 'one', 'Unshared option has wrong value in superproject.')
|
|
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..')
|