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.
 
 
 
 
 
 

12 lines
308 B

project('find program override', 'c')
gencodegen = find_program('gencodegen', required : false)
assert(not gencodegen.found(), 'gencodegen 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')