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.
20 lines
339 B
20 lines
339 B
3 years ago
|
project('rust proc-macro', 'rust')
|
||
|
|
||
|
if build_machine.system() != 'linux'
|
||
|
error('MESON_SKIP_TEST, this test only works on Linux. Patches welcome.')
|
||
|
endif
|
||
|
|
||
|
pm = shared_library(
|
||
|
'proc_macro_examples',
|
||
|
'proc.rs',
|
||
|
rust_crate_type : 'proc-macro',
|
||
|
)
|
||
|
|
||
|
main = executable(
|
||
|
'main',
|
||
|
'use.rs',
|
||
|
link_with : pm
|
||
|
)
|
||
|
|
||
|
test('main_test', main)
|