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.
20 lines
554 B
20 lines
554 B
project('foo', 'c') |
|
|
|
a = configuration_data() |
|
a.set('HELLO', 1) |
|
|
|
b = a |
|
|
|
assert(a.has('HELLO'), 'Original config data should be set on a') |
|
assert(b.has('HELLO'), 'Original config data should be set on copy') |
|
|
|
configure_file(output : 'b.h', configuration : b) |
|
|
|
# This should still work, as we didn't use the original above but a copy! |
|
a.set('WORLD', 1) |
|
|
|
assert(a.has('WORLD'), 'New config data should have been set') |
|
assert(not b.has('WORLD'), 'New config data set should not affect var copied earlier') |
|
|
|
configure_file(output : 'a.h', configuration : a) |
|
|
|
|