blob: 026b8cd9ba5c2c5096c9e4b4f08832d40e2790ba (
plain)
1
2
3
4
5
6
7
8
9
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
```
|