From fb770e1e3d17d548c34817001733f2a13f24ce9f Mon Sep 17 00:00:00 2001 From: Jussi Pakkanen Date: Wed, 18 Jul 2018 17:11:57 +0300 Subject: Add support for custom dist scripts. --- docs/markdown/snippets/distscript.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 docs/markdown/snippets/distscript.md (limited to 'docs/markdown/snippets') 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') +``` -- cgit v1.1