A couple of changes on the ming32 make bash file.

This commit is contained in:
Martín Lucas Golini
2013-09-27 20:37:40 -03:00
parent c23c9d6ce2
commit 2a3dcdcb69
2 changed files with 12 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE QtCreatorProject>
<!-- Written by QtCreator 2.8.0, 2013-09-25T22:58:50. -->
<!-- Written by QtCreator 2.8.0, 2013-09-27T20:37:04. -->
<qtcreator>
<data>
<variable>ProjectExplorer.Project.ActiveTarget</variable>

View File

@@ -2,7 +2,15 @@
cd $(dirname "$0")
premake4 --file=../../premake4.lua --os=windows --platform=mingw32 --with-static-freetype gmake
cd ../../make/mingw32/
time make $@ -e verbose=yes
make $@ -e verbose=yes
cd ../../libs/mingw32/
mv eepp.dll ../../
mv eepp-debug.dll ../../
if [ -f eepp.dll ];
then
mv eepp.dll ../../
fi
if [ -f eepp-debug.dll ];
then
mv eepp-debug.dll ../../
fi