qtk/tools/format.sh

8 lines
305 B
Bash
Raw Normal View History

2025-03-08 12:08:35 -05:00
#!/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