diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2018-07-18 17:11:57 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2018-08-27 23:35:29 +0300 |
commit | fb770e1e3d17d548c34817001733f2a13f24ce9f (patch) | |
tree | 7e9bf40d6ff7cc23256ec913fb831b35be126906 /docs/markdown/snippets | |
parent | 1ffc8de5e8cc79dbaa54fd1ac02b6b4c5edac7a1 (diff) | |
download | meson-fb770e1e3d17d548c34817001733f2a13f24ce9f.zip meson-fb770e1e3d17d548c34817001733f2a13f24ce9f.tar.gz meson-fb770e1e3d17d548c34817001733f2a13f24ce9f.tar.bz2 |
Add support for custom dist scripts.
Diffstat (limited to 'docs/markdown/snippets')
-rw-r--r-- | docs/markdown/snippets/distscript.md | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/docs/markdown/snippets/distscript.md b/docs/markdown/snippets/distscript.md new file mode 100644 index 0000000..37d05fe --- /dev/null +++ b/docs/markdown/snippets/distscript.md @@ -0,0 +1,12 @@ +## Dist scripts + +You can now specify scripts that are run as part of the `dist` +target. An example usage would go like this: + +```meson +project('foo', 'c') + +# other stuff here + +meson.add_dist_script('dist_cleanup.py') +``` |