aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown/snippets/install_skip_subprojects.md
blob: 16105a9a7156336369b739d2a53da8ee3f27ba2f (plain)
1
2
3
4
5
6
7
8
9
10
## Skip subprojects installation

It is now possible to skip installation of some or all subprojects. This is
useful when subprojects are internal dependencies static linked into the main
project.

By default all subprojects are still installed.
- `meson install -C builddir --skip-subprojects` installs only the main project.
- `meson install -C builddir --skip-subprojects foo,bar` installs the main project
  and all subprojects except for subprojects `foo` and `bar` if they are used.