Removed folder 'Testing' - not needed yet
This commit is contained in:
20
localbuild.sh
Executable file
20
localbuild.sh
Executable 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 ""
|
||||
|
||||
Reference in New Issue
Block a user