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.
8 lines
494 B
8 lines
494 B
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', rust_dependency_map : { 'leaf' : 'myleaf' }, install : true) |
|
e = executable('prog', 'prog.c', link_with : branch, install : true) |
|
test('linktest', e)
|
|
|