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.
31 lines
897 B
31 lines
897 B
3 years ago
|
name: subproject
|
||
|
long_name: Subproject object
|
||
|
description: This object is returned by [[subproject]] and is an opaque object representing it.
|
||
|
|
||
|
methods:
|
||
|
- name: found
|
||
|
returns: bool
|
||
|
since: 0.48.0
|
||
|
description: Returns whether the subproject was successfully setup.
|
||
|
|
||
|
- name: get_variable
|
||
|
returns: any
|
||
|
description: |
|
||
|
fetches the specified variable from inside the subproject.
|
||
|
This is useful to, for instance, get a
|
||
|
[[declare_dependency]] from the [subproject](Subprojects.md).
|
||
|
|
||
|
If the variable does not exist, the variable `fallback` is returned.
|
||
|
If a fallback is not specified, then attempting to read a non-existing
|
||
|
variable will cause a fatal error.
|
||
|
|
||
|
posargs:
|
||
|
var_name:
|
||
|
type: str
|
||
|
description: The name of the variable to query
|
||
|
|
||
|
optargs:
|
||
|
fallback:
|
||
|
type: any
|
||
|
description: The fallback value to return if `var_name` does not exist.
|