Sign in
qemu
/
meson
/
7b43a2e19613f3702935872b21b1020f7d8c6a9b
/
.
/
test cases
/
common
/
54 custom target source output
/
meson.build
blob: f9d039df0cb13dde17b0b9818c3a1f18c38c42b5 [
file
] [
log
] [
blame
]
project
(
'source generation'
,
'c'
)
ct
=
custom_target
(
'gen'
,
output
:
[
'mylib.h'
,
'mylib.c'
],
command
:
[
find_program
(
'generator.py'
),
'@OUTDIR@'
],
)
e
=
executable
(
'prog'
,
'main.c'
,
ct
)
test
(
'gentest'
,
e
)