diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2020-10-14 19:40:34 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-14 19:40:34 +0300 |
commit | 30d78f39812a0585a27e24ab44ef4e9da1f12574 (patch) | |
tree | 437f8b5d8e63e900f5b41923dcd33fc3950fe4f9 /docs/markdown/Using-wraptool.md | |
parent | 8b8a610ea4ed632759b831606723d1cafa8920d7 (diff) | |
parent | 3a0182378612bc764667328805b11bc92db696c2 (diff) | |
download | meson-30d78f39812a0585a27e24ab44ef4e9da1f12574.zip meson-30d78f39812a0585a27e24ab44ef4e9da1f12574.tar.gz meson-30d78f39812a0585a27e24ab44ef4e9da1f12574.tar.bz2 |
Merge pull request #6968 from xclaesse/auto-promote
Merge wraps from subprojects into wraps from main project
Diffstat (limited to 'docs/markdown/Using-wraptool.md')
-rw-r--r-- | docs/markdown/Using-wraptool.md | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/docs/markdown/Using-wraptool.md b/docs/markdown/Using-wraptool.md index f6023e8..ffa8309 100644 --- a/docs/markdown/Using-wraptool.md +++ b/docs/markdown/Using-wraptool.md @@ -76,24 +76,3 @@ straightforward: Wraptool can do other things besides these. Documentation for these can be found in the command line help, which can be accessed by `meson wrap --help`. - -## Promoting dependencies - -Meson will only search for subprojects from the top level -`subprojects` directory. If you have subprojects that themselves have -subprojects, you must transfer them to the top level. This can be done -by going to your source root and issuing a promotion command. - - meson wrap promote projname - -This will cause Meson to go through your entire project tree, find an -embedded subproject and copy it to the top level. - -If there are multiple embedded copies of a subproject, Meson will not -try to guess which one you want. Instead it will print all the -possibilities. You can then manually select which one to promote by -writing it out fully. - - meson wrap promote subprojects/s1/subprojects/projname - -This functionality was added in Meson release 0.45.0. |