summaryrefslogtreecommitdiffstats
path: root/test cases/failing/27 noprog use/meson.build
blob: af31ecee4729f9dc35c07835fd0e1836e9b1ceef (plain)
1
2
3
4
5
6
7
8
9
project('using not found exe')

nope = find_program('nonexisting', required : false)

custom_target( 'aa',
  input: 'meson.build',
  output: 'foobar',
  command: [nope, '@INPUT@', '@OUTPUT@']
)