• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1@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
23