This commit is contained in:
2025-03-08 12:08:35 -05:00
parent c86a7744b3
commit 16baf6cdaf
6 changed files with 44 additions and 28 deletions

1
tools/build-qt.sh Normal file
View File

@@ -0,0 +1 @@
#!/usr/bin/env bash

7
tools/format.sh Executable file
View File

@@ -0,0 +1,7 @@
#!/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