diff options
author | Xavier Claessens <xavier.claessens@collabora.com> | 2020-09-17 11:46:42 -0400 |
---|---|---|
committer | Xavier Claessens <xavier.claessens@collabora.com> | 2020-10-13 17:55:16 -0400 |
commit | 173c115834e37acf2a66fd00fa4010e5765c39a9 (patch) | |
tree | 358449130cbe02a74e686cae046346c7ff53432d /docs/markdown/snippets | |
parent | a20d7ad67d3c876785901349cfc990e4bf31778b (diff) | |
download | meson-173c115834e37acf2a66fd00fa4010e5765c39a9.zip meson-173c115834e37acf2a66fd00fa4010e5765c39a9.tar.gz meson-173c115834e37acf2a66fd00fa4010e5765c39a9.tar.bz2 |
Add wrap mode to disable auto promote
Diffstat (limited to 'docs/markdown/snippets')
-rw-r--r-- | docs/markdown/snippets/subsubproject.md | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/markdown/snippets/subsubproject.md b/docs/markdown/snippets/subsubproject.md index fdba3e0..77f4a0d 100644 --- a/docs/markdown/snippets/subsubproject.md +++ b/docs/markdown/snippets/subsubproject.md @@ -1,4 +1,4 @@ -## Sub-subprojects +## Wraps from subprojects are automatically promoted It is not required to promote wrap files for subprojects into the main project any more. When configuring a subproject, meson will look for any wrap file or @@ -9,3 +9,5 @@ the new wrap file or directory is ignored. That means that the main project can always override any subproject's wrap files by providing their own, it also means the ordering in which subprojects are configured matters, if 2 subprojects provide foo.wrap only the one from the first subproject to be configured will be used. + +This new behavior can be disabled by passing `--wrap-mode=nopromote`. |