diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/markdown/External-Project-module.md | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/markdown/External-Project-module.md b/docs/markdown/External-Project-module.md index 162d39d..f0bf2f7 100644 --- a/docs/markdown/External-Project-module.md +++ b/docs/markdown/External-Project-module.md @@ -87,6 +87,11 @@ Keyword arguments: and install the project will be printed onto Meson's stdout. - `env` : environment variables to set, such as `['NAME1=value1', 'NAME2=value2']`, a dictionary, or an [[@env]] object. +- `depends` : *Since 0.63.0* Specifies that this project depends on the specified + target(s) that must be built before running `make` to build this external + project. This should be used for example when the external project links to a + Meson `library()` that the `configure` script will find using the + `-uninstalled.pc` pkg-config file generated by Meson. Returns an [`ExternalProject`](#ExternalProject_object) object |