- updated windows build scripts so we can force a full rebuild:

build-mg pause rebuild
This commit is contained in:
Mark Vejvoda 2011-05-26 02:57:09 +00:00
parent 8afb22a603
commit 54285daa4f
1 changed files with 3 additions and 1 deletions

View File

@ -66,7 +66,9 @@ if not "%SVNVERSION%" == "." set CL=/DSVNVERSIONHEADER
if not "%SVNVERSION%" == "." echo building with CL [%CL%] if not "%SVNVERSION%" == "." echo building with CL [%CL%]
if not "%SVNVERSION%" == "." echo #define SVNVERSION "%SVNVERSION%" > ..\..\source\glest_game\facilities\svnversion.h if not "%SVNVERSION%" == "." echo #define SVNVERSION "%SVNVERSION%" > ..\..\source\glest_game\facilities\svnversion.h
msbuild /p:Configuration=Release Glest.sln if "%2" == "rebuild" echo Doing a FULL REBUILD...
if "%2" == "rebuild" msbuild /p:Configuration=Release /t:Rebuild Glest.sln
if not "%2" == "rebuild" msbuild /p:Configuration=Release Glest.sln
rem pause execution so we can see the output before the batch file exits rem pause execution so we can see the output before the batch file exits
if not "%1" == "nopause" pause if not "%1" == "nopause" pause