summaryrefslogtreecommitdiffstats
path: root/test cases/rust/3 staticlib/meson.build
blob: cf8e1032e13b561bd45cfeaadf6b2abe8adfb426 (plain)
1
2
3
4
5
6
7
project('rust static library', 'rust', 'c')

o = static_library('other', 'other.rs')
v = static_library('value', 'value.c')
l = static_library('stuff', 'stuff.rs', link_whole : [o, v], install : true)
e = executable('prog', 'prog.rs', link_with : l, install : true)
test('linktest', e)