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.
8 lines
424 B
8 lines
424 B
4 years ago
|
## Check if native or cross-file properties exist
|
||
|
|
||
|
It is now possible to check whether a native property or a cross-file property
|
||
|
exists with `meson.has_external_property('foo')`. This is useful if the
|
||
|
property in question is a boolean and one wants to distinguish between
|
||
|
"set" and "not provided" which can't be done the usual way by passing a
|
||
|
fallback parameter to `meson.get_external_property()` in this particular case.
|