The Meson Build System
http://mesonbuild.com/
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.
10 lines
221 B
10 lines
221 B
1 year ago
|
project('rustprog', 'c')
|
||
|
|
||
|
if not add_languages('rust', required : false)
|
||
|
error('MESON_SKIP_TEST crt-static doesn\'t work')
|
||
|
endif
|
||
|
|
||
|
c_lib = static_library('lib', 'lib.c')
|
||
|
|
||
|
executable('main', 'main.rs', link_with : c_lib)
|