blob: c577fab9535f6499eedbc09d12a9c0ba18ee0213 [file] [log] [blame]
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)
l = static_library('stuff2', 'stuff2.rs', link_with : [o, v])
e = executable('prog2', 'prog2.rs', link_with : l)