You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
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)
|
|
|