diff options
Diffstat (limited to 'docs')
-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 +``` |