ScreenTranslator/scripts/make_app.sh
2015-10-25 16:22:37 +03:00

13 lines
219 B
Bash
Executable File

#!/bin/bash
source ./options.sh $@
cleanupDirInNeeded $APP_DIR
cd $APP_DIR
echo "Building app"
lrelease $SRC_DIR/ScreenTranslator.pro
$QMAKE -qt=qt5 "CONFIG-=debug_and_release" "CONFIG+=release" $SRC_DIR
make $JOBS