The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
439 B
11 lines
439 B
# 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
|
|
|