aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown/snippets
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2018-06-18 22:36:54 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2018-06-20 20:38:26 +0300
commitc6431fe47e93f2d9dabeb4890842fd45ee983c56 (patch)
treec01c773dca78a2417425159da17380ea16f3657c /docs/markdown/snippets
parent10b094c980fd5e5c911c1ce423fe0deccde219e8 (diff)
downloadmeson-c6431fe47e93f2d9dabeb4890842fd45ee983c56.zip
meson-c6431fe47e93f2d9dabeb4890842fd45ee983c56.tar.gz
meson-c6431fe47e93f2d9dabeb4890842fd45ee983c56.tar.bz2
Added documentation.testcommand
Diffstat (limited to 'docs/markdown/snippets')
-rw-r--r--docs/markdown/snippets/install_command.md12
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
+```