The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
449 B
9 lines
449 B
3 years ago
|
project('staticlib link staticlib', 'c', 'rust')
|
||
|
|
||
|
leaf = static_library('leaf', 'leaf.rs', rust_crate_type : 'rlib')
|
||
|
# Even though leaf is linked using link_with, this gets implicitly promoted to link_whole because
|
||
|
# it is an internal Rust project.
|
||
|
branch = static_library('branch', 'branch.rs', link_with: leaf, rust_crate_type : 'staticlib', install : true)
|
||
|
e = executable('prog', 'prog.c', link_with : branch, install : true)
|
||
|
test('linktest', e)
|