aboutsummaryrefslogtreecommitdiff
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-23 23:26:46 +0300
commitf2e018c7f32b56679adf62c08f58bc1d9b9daf87 (patch)
tree5588e40322e797ee1f9a1db537fad7d45552138d /docs/markdown
parent7ce2a24f42ce546ad7b26594b3c9b3f087d83f94 (diff)
downloadmeson-f2e018c7f32b56679adf62c08f58bc1d9b9daf87.zip
meson-f2e018c7f32b56679adf62c08f58bc1d9b9daf87.tar.gz
meson-f2e018c7f32b56679adf62c08f58bc1d9b9daf87.tar.bz2
Create multiple different archive types with dist.
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 0000000..026b8cd
--- /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
+```