aboutsummaryrefslogtreecommitdiffstats
path: root/meson/test cases/common/50 custom target chain/usetarget/meson.build
blob: 9aece8ce96272634130628686e797940c95e5e6f (plain)
1
2
3
4
5
6
7
8
e = executable('myexe', 'myexe.c')
subexe = find_program('subcomp.py')

custom_target('use_exe',
  input : e,
  output : 'subout.res',
  command : [subexe, '@INPUT@', '@OUTPUT@'],
)