OLD | NEW |
(Empty) | |
| 1 @echo off |
| 2 setlocal |
| 3 |
| 4 REM setlocal |
| 5 REM call "C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\vcvarsall.bat"
amd64 |
| 6 REM call :build x64 Release v100 || goto :eof |
| 7 REM call :build x64 Debug v100 || goto :eof |
| 8 REM endlocal |
| 9 |
| 10 setlocal |
| 11 call "C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\vcvarsall.bat" x86 |
| 12 call :build Win32 Release v100 || goto :eof |
| 13 call :build Win32 Debug v100 || goto :eof |
| 14 endlocal |
| 15 |
| 16 setlocal |
| 17 call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" amd6
4 |
| 18 call :build x64 Release v140 || goto :eof |
| 19 call :build x64 Debug v140 || goto :eof |
| 20 endlocal |
| 21 |
| 22 setlocal |
| 23 call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x86 |
| 24 call :build Win32 Release v140 || goto :eof |
| 25 call :build Win32 Debug v140 || goto :eof |
| 26 endlocal |
| 27 |
| 28 setlocal |
| 29 call "C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" amd6
4 |
| 30 call :build x64 Release v120 || goto :eof |
| 31 call :build x64 Debug v120 || goto :eof |
| 32 endlocal |
| 33 |
| 34 setlocal |
| 35 call "C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" x86 |
| 36 call :build Win32 Release v120 || goto :eof |
| 37 call :build Win32 Debug v120 || goto :eof |
| 38 endlocal |
| 39 |
| 40 REM setlocal |
| 41 REM call "C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\vcvarsall.bat"
amd64 |
| 42 REM call :build x64 Release v110 || goto :eof |
| 43 REM call :build x64 Debug v110 || goto :eof |
| 44 REM endlocal |
| 45 |
| 46 REM setlocal |
| 47 REM call "C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\vcvarsall.bat"
x86 |
| 48 REM call :build Win32 Release v110 || goto :eof |
| 49 REM call :build Win32 Debug v110 || goto :eof |
| 50 REM endlocal |
| 51 |
| 52 goto :eof |
| 53 |
| 54 :build |
| 55 msbuild /m:4 /P:Platform=%1 /P:Configuration=%2 /P:PlatformToolset=%3 /P:UsesCon
figurationType=Dynamic /P:CallingConvention=cdecl .\zlib.sln || goto :eof |
| 56 msbuild /m:4 /P:Platform=%1 /P:Configuration=%2 /P:PlatformToolset=%3 /P:UsesCon
figurationType=Dynamic /P:CallingConvention=stdcall .\zlib.sln || goto :eof |
| 57 msbuild /m:4 /P:Platform=%1 /P:Configuration=%2 /P:PlatformToolset=%3 /P:UsesCon
figurationType=Static /P:CallingConvention=cdecl .\zlib.sln || goto :eof |
| 58 msbuild /m:4 /P:Platform=%1 /P:Configuration=%2 /P:PlatformToolset=%3 /P:UsesCon
figurationType=Static /P:CallingConvention=stdcall .\zlib.sln || goto :eof |
| 59 msbuild /m:4 /P:Platform=%1 /P:Configuration=%2 /P:PlatformToolset=%3 /P:UsesCon
figurationType=ltcg /P:CallingConvention=cdecl .\zlib.sln || goto :eof |
| 60 msbuild /m:4 /P:Platform=%1 /P:Configuration=%2 /P:PlatformToolset=%3 /P:UsesCon
figurationType=ltcg /P:CallingConvention=stdcall .\zlib.sln || goto :eof |
| 61 goto :eof |
| 62 |
| 63 |
OLD | NEW |