summaryrefslogtreecommitdiffstats
path: root/test cases/common/166 yield/meson.build
blob: e8f210682ee4bba219342c997f45dacb9f1b542f (plain)
1
2
3
4
5
6
7
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..')