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.
13 lines
452 B
13 lines
452 B
5 years ago
|
project('test env var stacking')
|
||
|
|
||
|
testenv = environment()
|
||
|
testenv.set('TEST_VAR_SET', 'some-value')
|
||
|
testenv.set('TEST_VAR_APPEND', 'some-value')
|
||
|
testenv.set('TEST_VAR_PREPEND', 'some-value')
|
||
|
|
||
|
testenv.append('TEST_VAR_APPEND', 'another-value-append', separator: ':')
|
||
|
testenv.prepend('TEST_VAR_PREPEND', 'another-value-prepend', separator: ':')
|
||
|
testenv.set('TEST_VAR_SET', 'another-value-set')
|
||
|
|
||
|
test('check env', find_program('script.py'), env: testenv)
|