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
784 B
25 lines
784 B
project('find program override', 'c') |
|
|
|
gencodegen = find_program('gencodegen', required : false) |
|
six_prog = find_program('six_meson_exe', required : false) |
|
|
|
assert(not gencodegen.found(), 'gencodegen is an internal program, should not be found') |
|
assert(not six_prog.found(), 'six_meson_exe is an internal program, should not be found') |
|
|
|
# Test the check-if-found-else-override workflow |
|
if not gencodegen.found() |
|
subdir('subdir') |
|
endif |
|
|
|
subdir('otherdir') |
|
|
|
tool = find_program('sometool') |
|
assert(tool.found()) |
|
assert(tool.full_path() != '') |
|
assert(tool.full_path() == tool.path()) |
|
|
|
# six_meson_exe is an overritten project executable |
|
six_prog = find_program('six_meson_exe') |
|
assert(six_prog.found()) |
|
assert(six_prog.full_path() != '') |
|
assert(six_prog.full_path() == six_prog.path())
|
|
|