meson/test cases/rust/3 staticlib/meson.build

6 lines
181 B
Meson

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)