2011-07-02 12:52:58 -04:00
|
|
|
set QTDIR=d:\qt\2010.01
|
|
|
|
set MINGW=%QTDIR%\mingw
|
|
|
|
|
|
|
|
set PATH=%QTDIR%\qt\bin;%QTDIR%\bin;%MINGW%\bin;%PATH%
|
|
|
|
|
2012-07-31 07:36:00 -04:00
|
|
|
"c:\Program Files\TortoiseSVN\bin\SubWCRev" . libretroshare\src\util\rsversion.in libretroshare\src\util\rsversion.h
|
2012-07-22 08:03:11 -04:00
|
|
|
|
|
|
|
@echo off
|
|
|
|
:loop1
|
|
|
|
if %1x == x (
|
|
|
|
rem if not exist tmp.txt echo debug >>tmp.txt
|
|
|
|
goto :end1
|
|
|
|
)
|
|
|
|
if /i %1==clean (
|
|
|
|
set clean=clean
|
|
|
|
shift
|
|
|
|
goto :loop1
|
|
|
|
)
|
|
|
|
echo.%1>>tmp.txt
|
|
|
|
shift
|
|
|
|
goto :loop1
|
|
|
|
|
|
|
|
:end1
|
|
|
|
if not exist tmp.txt (
|
|
|
|
echo debug >>tmp.txt
|
|
|
|
set clean=clean
|
|
|
|
)
|
|
|
|
if %clean%x==cleanx (
|
|
|
|
if not exist tmp.txt echo %clean% >>tmp.txt
|
|
|
|
|
|
|
|
)
|
|
|
|
for /f %%a in (tmp.txt) do (
|
|
|
|
@echo on
|
2011-07-02 12:52:58 -04:00
|
|
|
|
|
|
|
cd libbitdht\src
|
|
|
|
|
2012-07-22 08:03:11 -04:00
|
|
|
if not %clean%x==x mingw32-make clean
|
2011-07-02 12:52:58 -04:00
|
|
|
|
|
|
|
qmake libbitdht.pro
|
|
|
|
|
2012-07-22 08:03:11 -04:00
|
|
|
mingw32-make %%a
|
2011-07-02 12:52:58 -04:00
|
|
|
|
|
|
|
cd ..\..\libretroshare\src
|
|
|
|
|
2012-07-22 08:03:11 -04:00
|
|
|
if not %clean%x==x mingw32-make clean
|
2011-07-02 12:52:58 -04:00
|
|
|
|
|
|
|
qmake libretroshare.pro
|
|
|
|
|
2012-07-22 08:03:11 -04:00
|
|
|
mingw32-make %%a
|
2011-07-02 12:52:58 -04:00
|
|
|
|
2012-07-18 06:53:17 -04:00
|
|
|
cd ..\..\openpgpsdk\src
|
|
|
|
|
2012-07-22 08:03:11 -04:00
|
|
|
if not %clean%x==x mingw32-make clean
|
2012-07-18 06:53:17 -04:00
|
|
|
|
|
|
|
qmake openpgpsdk.pro
|
|
|
|
|
2012-07-22 08:03:11 -04:00
|
|
|
mingw32-make %%a
|
2012-07-18 06:53:17 -04:00
|
|
|
|
2011-07-02 12:52:58 -04:00
|
|
|
cd ..\..\retroshare-nogui\src
|
|
|
|
|
2012-07-22 08:03:11 -04:00
|
|
|
if not %clean%x==x mingw32-make clean
|
2011-07-02 12:52:58 -04:00
|
|
|
|
|
|
|
qmake retroshare-nogui.pro
|
|
|
|
|
2012-07-22 08:03:11 -04:00
|
|
|
mingw32-make %%a
|
2011-07-02 12:52:58 -04:00
|
|
|
|
|
|
|
cd ..\..\retroshare-gui\src
|
|
|
|
|
2012-07-22 08:03:11 -04:00
|
|
|
if not %clean%x==x mingw32-make clean
|
2012-02-20 07:38:04 -05:00
|
|
|
|
2012-07-31 07:36:00 -04:00
|
|
|
qmake retroshare-gui.pro
|
2011-07-02 12:52:58 -04:00
|
|
|
|
2012-07-22 08:03:11 -04:00
|
|
|
mingw32-make %%a
|
|
|
|
|
|
|
|
cd ..\..
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
@echo off
|
|
|
|
rem clean up
|
|
|
|
set clean=
|
|
|
|
del tmp.txt
|
2011-07-02 12:52:58 -04:00
|
|
|
|
|
|
|
pause
|
|
|
|
|