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.
9 lines
393 B
9 lines
393 B
4 years ago
|
project('implicit force fallback')
|
||
|
|
||
|
# The dependency 'something' is provided by a subproject. Normally this won't
|
||
|
# use the fallback subproject because required is false. However this unit test
|
||
|
# is configured with wrap_mode=forcefallback and force_fallback_for=something
|
||
|
# in which case we are expecting the fallback to be done.
|
||
|
d = dependency('something', required: false)
|
||
|
assert(d.found())
|