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