8 lines
305 B
Bash
8 lines
305 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
cmake -B build && cmake --build build -- -j $(nproc --ignore=1)
|
||
|
clang-tidy -p build/ --fix --config-file=.clang-tidy \
|
||
|
src/**/*.cpp src/**/*.h example-app/*.cpp example-app/*.h
|
||
|
clang-format -i --style=file:.clang-format \
|
||
|
src/**/*.cpp src/**/*.h example-app/*.cpp example-app/*.h
|