Sign in
qemu
/
meson
/
7b43a2e19613f3702935872b21b1020f7d8c6a9b
/
.
/
test cases
/
common
/
194 static threads
/
meson.build
blob: 427920034d5fea9e001858ed2133d684fa402b1d [
file
] [
log
] [
blame
]
project
(
'threads'
,
'c'
)
thread_dep
=
dependency
(
'threads'
)
lib1
=
static_library
(
'lib1'
,
'lib1.c'
,
dependencies
:
thread_dep
)
lib2
=
static_library
(
'lib2'
,
'lib2.c'
,
link_with
:
lib1
)
executable
(
'prog'
,
'prog.c'
,
link_with
:
lib2
)