diff options
Diffstat (limited to 'meson/test cases/rust/7 private crate collision/meson.build')
-rw-r--r-- | meson/test cases/rust/7 private crate collision/meson.build | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/meson/test cases/rust/7 private crate collision/meson.build b/meson/test cases/rust/7 private crate collision/meson.build new file mode 100644 index 000000000..81b6aabfa --- /dev/null +++ b/meson/test cases/rust/7 private crate collision/meson.build @@ -0,0 +1,5 @@ +project('rust private crate collision', 'rust') + +l = static_library('rand', 'rand.rs', install : true) +e = executable('prog', 'prog.rs', link_with : l, install : true) +test('linktest', e) |