blob: d5cf75206dd810e0e71bd5af06ab56f2d3091f55 [file] [log] [blame]
Zachary Ware6b6e6872017-06-10 14:58:42 -05001@echo off
2setlocal
3
4set D=%~dp0
5set PCBUILD=%~dp0..\..\PCBuild\
6
7
8echo Building Lib\distutils\command\wininst-xx.0.exe
9
Steve Dower40a23e82017-06-19 10:34:25 -070010call "%PCBUILD%find_msbuild.bat" %MSBUILD%
11if ERRORLEVEL 1 (echo Cannot locate MSBuild.exe on PATH or as MSBUILD variable & exit /b 2)
Zachary Ware6b6e6872017-06-10 14:58:42 -050012
Steve Dower40a23e82017-06-19 10:34:25 -070013%MSBUILD% "%D%bdist_wininst.vcxproj" "/p:SolutionDir=%PCBUILD%\" /p:Configuration=Release /p:Platform=Win32
Zachary Ware6b6e6872017-06-10 14:58:42 -050014if errorlevel 1 goto :eof
15
16
17echo Building Lib\distutils\command\wininst-xx.0-amd64.exe
18
Steve Dower40a23e82017-06-19 10:34:25 -070019%MSBUILD% "%D%bdist_wininst.vcxproj" "/p:SolutionDir=%PCBUILD%\" /p:Configuration=Release /p:Platform=x64