diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2018-07-18 17:11:57 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2018-08-15 00:42:25 +0300 |
commit | feb38a7aa8173f669d6d0bf975c37f4550083a2f (patch) | |
tree | a0fdb5dc105b31d05a9ec1acea8f8e7587ba874e /docs/markdown/snippets/distscript.md | |
parent | 4f088365e49d28e0d413d42eb024c3ff6cbfee35 (diff) | |
download | meson-distscript.tar.gz |
Add support for custom dist scripts.distscript
Diffstat (limited to 'docs/markdown/snippets/distscript.md')
-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 000000000..37d05fed8 --- /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') +``` |