meson.build 182 B

123456789
  1. e = executable('myexe', 'myexe.c')
  2. subexe = find_program('subcomp.py')
  3. custom_target('use_exe',
  4. input : e,
  5. output : 'subout.res',
  6. command : [subexe, '@INPUT@', '@OUTPUT@'],
  7. )