blob: 37d05fed8e933502d637f2b36883071b4388ba28 (
plain)
1
2
3
4
5
6
7
8
9
10
11
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')
```
|