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.
22 lines
834 B
22 lines
834 B
6 years ago
|
project('test project')
|
||
|
|
||
|
case = get_option('case')
|
||
7 years ago
|
|
||
|
if case == 'find_program'
|
||
|
prog = find_program('bash')
|
||
|
result = run_command(prog, ['--version'])
|
||
|
assert(result.stdout().strip().endswith('12345'), 'Didn\'t load bash from config file')
|
||
7 years ago
|
elif case == 'config_dep'
|
||
|
add_languages('cpp')
|
||
|
dep = dependency('llvm')
|
||
|
assert(dep.get_configtool_variable('version').endswith('12345'), 'Didn\'t load llvm from config file')
|
||
7 years ago
|
elif case == 'python3'
|
||
|
prog = import('python3').find_python()
|
||
|
result = run_command(prog, ['--version'])
|
||
|
assert(result.stdout().strip().endswith('12345'), 'Didn\'t load python3 from config file')
|
||
6 years ago
|
elif case == 'python'
|
||
|
prog = import('python').find_installation()
|
||
|
result = run_command(prog, ['--version'])
|
||
|
assert(result.stdout().strip().endswith('12345'), 'Didn\'t load python from config file')
|
||
7 years ago
|
endif
|