Build the graphics version in release instead of debug.

This commit is contained in:
xawotihs
2013-11-30 19:32:55 +01:00
parent eb8b22b2d5
commit bf0a0a1580

View File

@@ -18,11 +18,11 @@ ant debug -f projects/mtg/Android/build.xml
# we're building a Qt version with GUI here # we're building a Qt version with GUI here
mkdir qt-gui-build mkdir qt-gui-build
cd qt-gui-build cd qt-gui-build
qmake ../projects/mtg/wagic-qt.pro CONFIG+=debug CONFIG+=graphics qmake ../projects/mtg/wagic-qt.pro CONFIG+=release CONFIG+=graphics
make -j 8 make -j 8
cd .. cd ..
# let's try an Intel linux binary # let's try an Intel linux binary in debug text-mode-only
qmake projects/mtg/wagic-qt.pro CONFIG+=console CONFIG+=debug DEFINES+=CAPTURE_STDERR qmake projects/mtg/wagic-qt.pro CONFIG+=console CONFIG+=debug DEFINES+=CAPTURE_STDERR
make -j 8 make -j 8