Files
BinderBeispielRegler/localbuild.sh
Uwe Jakobeit 699fc87bc3 clean-up
2026-03-30 15:46:22 +02:00

19 lines
392 B
Bash
Executable File

#!/bin/sh
# Remove old cmake build contents to start fresh like ci would do
rm -r build
# project configuration
cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DQt6_DIR=$HOME/Qt/6.10.2/gcc_64/lib/cmake/Qt6
#build executable
make -j$(nproc) --directory=build
echo ""
echo ""
echo "------------------------"
echo "run with './build/app/app'"
echo "------------------------"
echo ""
echo ""