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.
18 lines
313 B
18 lines
313 B
4 years ago
|
project('structured_source with empty string key')
|
||
|
|
||
|
if not add_languages(['rust'], required : false, native : false)
|
||
|
error('MESON_SKIP_TEST: Rust is required but not found.')
|
||
|
endif
|
||
|
|
||
|
executable(
|
||
|
'main',
|
||
|
[
|
||
|
structured_sources(
|
||
|
'main.rs',
|
||
|
),
|
||
|
structured_sources(
|
||
|
'main.rs',
|
||
|
),
|
||
|
],
|
||
|
)
|