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.
16 lines
313 B
16 lines
313 B
3 years ago
|
project('deprecated options',
|
||
|
default_options: [
|
||
|
'o1=false',
|
||
|
'o2=a,b',
|
||
|
'o3=a,b',
|
||
|
'o4=true',
|
||
|
'o5=auto',
|
||
|
]
|
||
|
)
|
||
|
|
||
|
assert(get_option('o1') == false)
|
||
|
assert(get_option('o2') == ['a', 'b'])
|
||
|
assert(get_option('o3') == ['c', 'b'])
|
||
|
assert(get_option('o4').enabled())
|
||
|
assert(get_option('o5') == false)
|