rust: Add unit test for transitive rust dependencies
This commit is contained in:
parent
3500349df1
commit
204563751e
|
@ -0,0 +1,3 @@
|
|||
pub fn foo() -> i32 {
|
||||
123
|
||||
}
|
|
@ -0,0 +1,5 @@
|
|||
liba = static_library('liba', 'lib.rs',
|
||||
rust_crate_type : 'rlib',
|
||||
)
|
||||
|
||||
liba_dep = declare_dependency(link_with : liba)
|
|
@ -0,0 +1,3 @@
|
|||
pub fn bar() -> i32 {
|
||||
2 * liba::foo()
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
libb = static_library('libb', 'lib.rs',
|
||||
rust_crate_type : 'rlib',
|
||||
dependencies : [liba_dep],
|
||||
)
|
||||
|
||||
libb_dep = declare_dependency(link_with : libb)
|
|
@ -0,0 +1,3 @@
|
|||
fn main() {
|
||||
println!("{}", libb::bar());
|
||||
}
|
|
@ -0,0 +1,12 @@
|
|||
project('transitive dependencies', 'rust',
|
||||
version : '1.0.0',
|
||||
meson_version : '>= 1.0.0',
|
||||
default_options : ['rust_std=2018'],
|
||||
)
|
||||
|
||||
subdir('liba')
|
||||
subdir('libb')
|
||||
|
||||
main = executable('main', 'main.rs',
|
||||
dependencies : [libb_dep],
|
||||
)
|
Loading…
Reference in New Issue