diff options
Diffstat (limited to 'test cases')
-rw-r--r-- | test cases/rust/18 proc-macro/meson.build | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test cases/rust/18 proc-macro/meson.build b/test cases/rust/18 proc-macro/meson.build index 2958df1..c5f0dfc 100644 --- a/test cases/rust/18 proc-macro/meson.build +++ b/test cases/rust/18 proc-macro/meson.build @@ -18,3 +18,16 @@ main = executable( ) test('main_test', main) + +rust = import('rust') + +pm = rust.proc_macro('proc_macro_examples2', 'proc.rs') + +main = executable( + 'main2', + 'use.rs', + link_with : pm, + rust_dependency_map : {'proc_macro_examples2' : 'proc_macro_examples'} +) + +test('main_test2', main) |