Sign in
qemu
/
meson
/
refs/heads/0.45
/
.
/
test cases
/
common
/
82 custom subproject dir
/
meson.build
blob: d9ba649b1fbea13b552942018fa8de37e4b12606 [
file
] [
log
] [
blame
]
project
(
'A'
,
'c'
,
subproject_dir
:
'custom_subproject_dir'
)
B
=
subproject
(
'B'
)
b
=
B
.
get_variable
(
'b'
)
C
=
subproject
(
'C'
)
c
=
C
.
get_variable
(
'c'
)
a
=
executable
(
'a'
,
'a.c'
,
link_with
:
[
b
,
c
])
test
(
'a test'
,
a
)