Sign in
qemu
/
meson
/
refs/heads/flob
/
.
/
test cases
/
rust
/
4 polyglot
/
meson.build
blob: b7eef57d93519c3f5d6dd226def5d7b215b44fb2 [
file
] [
log
] [
blame
]
project
(
'rust and c polyglot executable'
,
'c'
,
'rust'
)
l
=
library
(
'stuff'
,
'stuff.rs'
,
rust_crate_type
:
'cdylib'
,
install
:
true
)
e
=
executable
(
'prog'
,
'prog.c'
,
link_with
:
l
,
install
:
true
)
test
(
'polyglottest'
,
e
)