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.
25 lines
1.0 KiB
25 lines
1.0 KiB
project('args flattening') |
|
|
|
arr = get_variable('does-not-exist', ['bar', 'baz']) |
|
assert(arr == ['bar', 'baz'], 'get_variable with array fallback is broken') |
|
|
|
set_variable('arr', ['bar', 'baz']) |
|
assert(arr == ['bar', 'baz'], 'set_variable(array) is broken') |
|
|
|
arr = meson.get_cross_property('does-not-exist', ['bar', 'baz']) |
|
assert(arr == ['bar', 'baz'], 'meson.get_cross_property with array fallback is broken') |
|
|
|
arr = meson.get_external_property('does-not-exist', ['bar', 'baz']) |
|
assert(arr == ['bar', 'baz'], 'meson.get_external_property with array fallback is broken') |
|
|
|
arr = meson.get_external_property('does-not-exist', ['bar', 'baz'], native: true) |
|
assert(arr == ['bar', 'baz'], 'meson.get_external_property native:true with array fallback is broken') |
|
|
|
arr = meson.get_external_property('does-not-exist', ['bar', 'baz'], native: false) |
|
assert(arr == ['bar', 'baz'], 'meson.get_external_property native:false with array fallback is broken') |
|
|
|
# Test deprecated behaviour |
|
|
|
conf = configuration_data() |
|
conf.set(['foo', 'bar']) |
|
message(conf.get('foo'))
|
|
|