Sign in
qemu
/
meson
/
7b43a2e19613f3702935872b21b1020f7d8c6a9b
/
.
/
test cases
/
common
/
50 custom target chain
/
usetarget
/
meson.build
blob: 9aece8ce96272634130628686e797940c95e5e6f [
file
] [
log
] [
blame
]
e
=
executable
(
'myexe'
,
'myexe.c'
)
subexe
=
find_program
(
'subcomp.py'
)
custom_target
(
'use_exe'
,
input
:
e
,
output
:
'subout.res'
,
command
:
[
subexe
,
'@INPUT@'
,
'@OUTPUT@'
],
)