The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
287 B
12 lines
287 B
6 years ago
|
## A builtin target to run clang-format
|
||
|
|
||
|
If you have `clang-format` installed and there is a `.clang-format`
|
||
|
file in the root of your master project, Meson will generate a run
|
||
|
target called `clang-format` so you can reformat all files with one
|
||
|
command:
|
||
|
|
||
|
```meson
|
||
|
ninja clang-format
|
||
|
```
|
||
|
|