summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2018-12-05 07:44:27 +0530
committerGitHub <noreply@github.com>2018-12-05 07:44:27 +0530
commitfebd3e8524a2ca63f4728a51c5edd19451d6c5fc (patch)
tree334230511a160bc8f2e92a05806d0e9ff523d92a
parent58b838a80bfe1d3307e730c293ce91cb93b332c9 (diff)
downloadmeson-febd3e8524a2ca63f4728a51c5edd19451d6c5fc.tar.gz
Document how to declare fallback-only dependencies [skip ci]
-rw-r--r--docs/markdown/Reference-manual.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/markdown/Reference-manual.md b/docs/markdown/Reference-manual.md
index a723b0349..5cd24b719 100644
--- a/docs/markdown/Reference-manual.md
+++ b/docs/markdown/Reference-manual.md
@@ -420,7 +420,9 @@ If dependency_name is `''`, the dependency is always not found. So with
`found()` method returns `false`, and which can be passed like any other
dependency to the `dependencies:` keyword argument of a `build_target`. This
can be used to implement a dependency which is sometimes not required e.g. in
-some branches of a conditional.
+some branches of a conditional, or with a `fallback:` kwarg, can be used to
+declare an optional dependency that only looks in the specified subproject,
+and only if that's allowed by `--wrap-mode`.
The returned object also has methods that are documented in the
[object methods section](#dependency-object) below.