meson.build 199 B

12345678910
  1. project('using not found exe', 'c')
  2. nope = find_program('nonexisting', required : false)
  3. custom_target( 'aa',
  4. input: 'meson.build',
  5. output: 'foobar',
  6. command: [nope, '@INPUT@', '@OUTPUT@']
  7. )