diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2019-07-21 18:54:16 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2019-07-23 23:26:46 +0300 |
commit | f2e018c7f32b56679adf62c08f58bc1d9b9daf87 (patch) | |
tree | 5588e40322e797ee1f9a1db537fad7d45552138d /docs/markdown | |
parent | 7ce2a24f42ce546ad7b26594b3c9b3f087d83f94 (diff) | |
download | meson-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.md | 10 |
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 +``` |