This commit is contained in:
2025-03-08 12:08:35 -05:00
parent c86a7744b3
commit 1edd360766
4 changed files with 39 additions and 24 deletions

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

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

8
tools/format.sh Executable file
View File

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