blob: 3ce46cfd3806b1d12658d275d3dae6f76e751656 [file] [log] [blame]
Zachary Ware6b6e6872017-06-10 14:58:42 -05001@echo off
2setlocal
3
4set D=%~dp0
Stefan Grönkef1502d02017-09-25 18:58:10 +02005set PCBUILD=%~dp0..\..\PCbuild\
Zachary Ware6b6e6872017-06-10 14:58:42 -05006
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