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