Removed folder 'Testing' - not needed yet

This commit is contained in:
Uwe Jakobeit
2026-03-30 11:52:39 +02:00
parent 00f8e9a751
commit a4b0739467
722 changed files with 23872 additions and 22 deletions

20
localbuild.sh Executable file
View File

@@ -0,0 +1,20 @@
#!/bin/sh
# Remove old cmake build contents to start fresh like ci would do
rm -r build
# enable CMake to find Qt6
Qt6Dir=$HOME/Qt/6.10.2/lib/cmake
# project configuration
cmake -S . -B build -DCMAKE_BUILD_TYPE=Release
#build executable
make -j$(nproc) --directory=build
echo ""
echo ""
echo "------------------------"
echo "run with './build/app/app'"
echo "------------------------"
echo ""
echo ""