diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2018-06-21 00:53:54 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-21 00:53:54 +0300 |
commit | f3c01a3c4f973ad234ead327f696b5e7fb43e4f6 (patch) | |
tree | dbf6793f698831d570396254edb57a85e8669e1d /docs/markdown/snippets | |
parent | 57b3f9858625b1c0204320dddec8b6b84f6289c2 (diff) | |
parent | c6431fe47e93f2d9dabeb4890842fd45ee983c56 (diff) | |
download | meson-f3c01a3c4f973ad234ead327f696b5e7fb43e4f6.zip meson-f3c01a3c4f973ad234ead327f696b5e7fb43e4f6.tar.gz meson-f3c01a3c4f973ad234ead327f696b5e7fb43e4f6.tar.bz2 |
Merge pull request #3590 from mesonbuild/testcommand
Made install a top level Meson command.
Diffstat (limited to 'docs/markdown/snippets')
-rw-r--r-- | docs/markdown/snippets/install_command.md | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/docs/markdown/snippets/install_command.md b/docs/markdown/snippets/install_command.md new file mode 100644 index 0000000..68866c9 --- /dev/null +++ b/docs/markdown/snippets/install_command.md @@ -0,0 +1,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 +``` |