aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown/snippets/install_command.md
blob: 68866c9974630c89de4706629672e2e22a012b9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
## Made install a top level Meson command

You can now run `meson install` in your build directory and it will do
the install. It has several command line options you can toggle the
behaviour that is not in the default `ninja install` invocation. This
is similar to how `meson test` already works.

For example, to install only the files that have changed, you can do:

```console
meson install --only-changed
```