- msvc 2015 build script works

This commit is contained in:
SoftCoder 2015-10-24 23:48:40 -07:00
parent 81346ba6b9
commit 719029358f

View File

@ -29,11 +29,16 @@ call .\7z.exe x -r -o..\..\source\ ..\..\source\%depfile%
goto processBuildStageA goto processBuildStageA
:checkDepIntegrity :checkDepIntegrity
ECHO Looking for windows dependency archive... ECHO Looking for windows dependency archive, please wait... (testing existing archive)...
call .\7z.exe t ..\..\source\%depfile% >nul call .\7z.exe t ..\..\source\%depfile% >nul
set 7ztestdep=%ERRORLEVEL% rem call .\7z.exe t ..\..\source\%depfile%
ECHO Result of windows dependency archive [%7ztestdep%] set testdeperr=%ERRORLEVEL%
if NOT "%7ztestdep%" == "0" goto getDepFile ECHO Result of windows dependency archive [%testdeperr%]
rem pause
if NOT "%testdeperr%" == "0" goto getDepFile
if NOT EXIST ..\..\source\%depfolder%\NUL echo Extracting archive [%depfile%]
if NOT EXIST ..\..\source\%depfolder%\NUL call .\7z.exe x -r -o..\..\source\ ..\..\source\%depfile%
goto processBuildStageA goto processBuildStageA
:processBuildStageA :processBuildStageA