Browse Source

improve build script

pull/63/head
Duke Leto 5 years ago
parent
commit
0012f9ed46
  1. 9
      build.sh

9
build.sh

@ -15,4 +15,11 @@ fi
echo "Compiling with $JOBS threads..."
qmake silentdragon.pro CONFIG+=debug; make -j$JOBS
if [ "$1" == "clean" ]; then
make clean
elif [ "$1" == "cleanbuild" ]; then
make clean
qmake silentdragon.pro CONFIG+=debug; make -j$JOBS
else
qmake silentdragon.pro CONFIG+=debug; make -j$JOBS
fi

Loading…
Cancel
Save