blob: e4de42fbd2a3793f63ae091ce423c61adbdbbfad [file] [log] [blame]
project('using not found exe', 'c')
nope = find_program('nonexisting', required : false)
custom_target( 'aa',
input: 'meson.build',
output: 'foobar',
command: [nope, '@INPUT@', '@OUTPUT@']
)