blob: e4de42fbd2a3793f63ae091ce423c61adbdbbfad (
plain)
1
2
3
4
5
6
7
8
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@']
)
|