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.
19 lines
282 B
19 lines
282 B
4 years ago
|
project('rust std options', 'rust')
|
||
|
|
||
|
# this only works in 2018
|
||
|
new = executable(
|
||
|
'new',
|
||
|
'2018.rs',
|
||
|
override_options : ['rust_std=2018'],
|
||
|
)
|
||
|
|
||
|
# this only works in 2015
|
||
|
old = static_library(
|
||
|
'old',
|
||
|
'2015.rs',
|
||
|
override_options : ['rust_std=2015'],
|
||
|
)
|
||
|
|
||
|
|
||
|
test('2018 std', new)
|