The Meson Build System
http://mesonbuild.com/
6 lines
181 B
6 lines
181 B
5 years ago
|
project('rust static library', 'rust')
|
||
|
|
||
|
l = static_library('stuff', 'stuff.rs', install : true)
|
||
|
e = executable('prog', 'prog.rs', link_with : l, install : true)
|
||
|
test('linktest', e)
|