ScreenTranslator/scripts/make_app.sh

13 lines
219 B
Bash
Raw Normal View History

#!/bin/bash
source ./options.sh $@
cleanupDirInNeeded $APP_DIR
cd $APP_DIR
echo "Building app"
2015-10-25 20:22:37 +07:00
lrelease $SRC_DIR/ScreenTranslator.pro
$QMAKE -qt=qt5 "CONFIG-=debug_and_release" "CONFIG+=release" $SRC_DIR
make $JOBS