qtk/tools/format.sh

17 lines
552 B
Bash
Raw Normal View History

2025-03-08 12:08:35 -05:00
#!/usr/bin/env bash
2025-03-14 15:04:49 -04:00
# Helper script to run clang-tidy and clang-format.
# This should be executed from the root of the repository:
#
# git clone https://git.shaunreed.com/shaunrd0/qtk
# cd qtk
# ./tools/format.sh
2025-03-08 12:08:35 -05:00
2025-03-14 15:04:49 -04:00
# Configure and build qtk
2025-03-08 12:08:35 -05:00
cmake -B build && cmake --build build -- -j $(nproc --ignore=1)
2025-03-14 15:04:49 -04:00
# Run clang-tidy and clang-format
SOURCES="src/**/*.cpp src/**/*.h example-app/*.cpp example-app/*.h"
run-clang-tidy \
-p build/ -j $(nproc --ignore=1) -fix -config-file=.clang-tidy $SOURCES
2025-03-14 15:04:49 -04:00
clang-format -i --style=file:.clang-format $SOURCES