CONFIG += release added to OSX and Linux build scripts

This commit is contained in:
Luis Ángel San Martín
2013-10-15 10:07:08 +02:00
parent e6c1b7515e
commit 0b1a0098d5
4 changed files with 4 additions and 8 deletions

View File

@ -5,13 +5,13 @@ fi
echo "Compiling YACReader"
cd ./YACReader
qmake -spec macx-g++
qmake -spec macx-g++ "CONFIG+=release"
make
cd ..
echo "Compiling YACReaderLibrary"
cd ./YACReaderLibrary
qmake -spec macx-g++
qmake -spec macx-g++ "CONFIG+=release"
make
cd ..