diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2021-02-14 21:28:44 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2021-02-14 21:28:44 +0200 |
commit | 5d651e76b5b6dba5dd03ffec609719b02d703bb7 (patch) | |
tree | a2796da9b60e919af3fd08c4a206d29e61e6de5c /docs/markdown/snippets/dist_subproject.md | |
parent | c0b448d3ca98cea2c6a55609772baa7954702fd8 (diff) | |
download | meson-5d651e76b5b6dba5dd03ffec609719b02d703bb7.zip meson-5d651e76b5b6dba5dd03ffec609719b02d703bb7.tar.gz meson-5d651e76b5b6dba5dd03ffec609719b02d703bb7.tar.bz2 |
Set up release 0.57.0.57.0
Diffstat (limited to 'docs/markdown/snippets/dist_subproject.md')
-rw-r--r-- | docs/markdown/snippets/dist_subproject.md | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/docs/markdown/snippets/dist_subproject.md b/docs/markdown/snippets/dist_subproject.md deleted file mode 100644 index a3127dd..0000000 --- a/docs/markdown/snippets/dist_subproject.md +++ /dev/null @@ -1,16 +0,0 @@ -## Packaging a subproject - -The `meson dist` command can now create a distribution tarball for a subproject -in the same git repository as the main project. This can be useful if parts of -the project (e.g. libraries) can be built and distributed separately. In that -case they can be moved into `subprojects/mysub` and running `meson dist` in that -directory will now create a tarball containing only the source code from that -subdir and not the rest of the main project or other subprojects. - -For example: -```sh -git clone https://github.com/myproject -cd myproject/subprojects/mysubproject -meson builddir -meson dist -C builddir -``` |