diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2017-12-26 13:24:30 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-26 13:24:30 +0200 |
commit | ac8d6087bfe1a2dacbd13d6cc9c4c526fc997fb5 (patch) | |
tree | fb443ccd4bdfa44670cc78a6b14b386cdf625a7a /docs/markdown/snippets | |
parent | 1806aac37669fe5b4a50175b7b8298f119248be3 (diff) | |
parent | a5507404ab24c307b1ca5127b59e73759790746a (diff) | |
download | meson-ac8d6087bfe1a2dacbd13d6cc9c4c526fc997fb5.zip meson-ac8d6087bfe1a2dacbd13d6cc9c4c526fc997fb5.tar.gz meson-ac8d6087bfe1a2dacbd13d6cc9c4c526fc997fb5.tar.bz2 |
Merge pull request #2334 from mesonbuild/promotedep
Add functionality to promote nested dependencies to top level.
Diffstat (limited to 'docs/markdown/snippets')
-rw-r--r-- | docs/markdown/snippets/wrap_promote.md | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/docs/markdown/snippets/wrap_promote.md b/docs/markdown/snippets/wrap_promote.md new file mode 100644 index 0000000..20fee47 --- /dev/null +++ b/docs/markdown/snippets/wrap_promote.md @@ -0,0 +1,11 @@ +# Can promote dependencies with wrap command + +The `promote` command makes it easy to copy nested dependencies to the top level. + + meson wrap promote scommon + +This will search the project tree for a subproject called `scommon` and copy it to the top level. + +If there are many embedded subprojects with the same name, you have to specify which one to promote manually like this: + + meson wrap promote subprojects/s1/subprojects/scommon |