Error out if using a not found binary in the build. Closes #469.
parent
8945c85f96
commit
317a735b07
2 changed files with 11 additions and 0 deletions
@ -0,0 +1,9 @@ |
||||
project('using not found exe', 'c') |
||||
|
||||
nope = find_program('nonexisting', required : false) |
||||
|
||||
custom_target( 'aa', |
||||
input: 'meson.build', |
||||
output: 'foobar', |
||||
command: [nope, '@INPUT@', '@OUTPUT@'] |
||||
) |
Loading…
Reference in new issue