summaryrefslogtreecommitdiff
path: root/docs/markdown
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2019-07-21 18:54:16 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2019-07-21 19:08:33 +0300
commit671bee7640c55d54faf4aa61d78ef454eac90eea (patch)
tree9025d18ee66b33f085c06f31dba5d44a11d9dd9e /docs/markdown
parent9a35164762abc36dbddb5a7b15de0c946555904d (diff)
downloadmeson-distcmd.tar.gz
Create multiple different archive types with dist.distcmd
Diffstat (limited to 'docs/markdown')
-rw-r--r--docs/markdown/snippets/dist-command.md10
1 files changed, 10 insertions, 0 deletions
diff --git a/docs/markdown/snippets/dist-command.md b/docs/markdown/snippets/dist-command.md
new file mode 100644
index 000000000..026b8cd9b
--- /dev/null
+++ b/docs/markdown/snippets/dist-command.md
@@ -0,0 +1,10 @@
+## Dist is now a top level command
+
+Previously creating a source archive could only be done with `ninja
+dist`. Starting with this release Meson provides a top level `dist`
+that can be invoked directly. It also has a command line option to
+determine which kinds of archives to create:
+
+```meson
+meson dist --formats=xztar,zip
+```