Zachary Ware | 6b6e687 | 2017-06-10 14:58:42 -0500 | [diff] [blame] | 1 | @echo off |
| 2 | setlocal |
| 3 | |
| 4 | set D=%~dp0 |
| 5 | set PCBUILD=%~dp0..\..\PCBuild\ |
| 6 | |
| 7 | |
| 8 | echo Building Lib\distutils\command\wininst-xx.0.exe |
| 9 | |
| 10 | call "%PCBUILD%env.bat" x86 |
| 11 | if errorlevel 1 goto :eof |
| 12 | |
| 13 | msbuild "%D%bdist_wininst.vcxproj" "/p:SolutionDir=%PCBUILD%\" /p:Configuration=Release /p:Platform=Win32 |
| 14 | if errorlevel 1 goto :eof |
| 15 | |
| 16 | |
| 17 | echo Building Lib\distutils\command\wininst-xx.0-amd64.exe |
| 18 | |
| 19 | call "%PCBUILD%env.bat" x86_amd64 |
| 20 | if errorlevel 1 goto :eof |
| 21 | |
| 22 | msbuild "%D%bdist_wininst.vcxproj" "/p:SolutionDir=%PCBUILD%\" /p:Configuration=Release /p:Platform=x64 |