ScreenTranslator/scripts/make_app.sh

13 lines
239 B
Bash
Raw Normal View History

#!/bin/bash
source ./options.sh $@
cleanupDirInNeeded $APP_DIR
cd $APP_DIR
echo "Building app"
2015-12-26 18:36:16 +07:00
$QT_LRELEASE $QT_CHOOSER $SRC_DIR/ScreenTranslator.pro
2015-11-05 01:30:36 +07:00
$QMAKE $QT_CHOOSER "CONFIG-=debug_and_release" "CONFIG+=release" $SRC_DIR
make $JOBS