9 lines
311 B
Bash
Executable File
9 lines
311 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
cd ..
|
|
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
|