Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: ffccaa40fa237f4afc9eec87c78a98356f9f6e77 authored by Larry Hastings on 06 December 2015, 01:05:23 UTC
Version bump for 3.5.1 final.
Tip revision: ffccaa4
build.bat
@echo off
setlocal

set D=%~dp0
set PCBUILD=%~dp0..\..\PCBuild\


echo Building Lib\distutils\command\wininst-xx.0.exe

call "%PCBUILD%env.bat" x86
if errorlevel 1 goto :eof

msbuild "%D%bdist_wininst.vcxproj" "/p:SolutionDir=%PCBUILD%\" /p:Configuration=Release /p:Platform=Win32
if errorlevel 1 goto :eof


echo Building Lib\distutils\command\wininst-xx.0-amd64.exe

call "%PCBUILD%env.bat" x86_amd64
if errorlevel 1 goto :eof

msbuild "%D%bdist_wininst.vcxproj" "/p:SolutionDir=%PCBUILD%\" /p:Configuration=Release /p:Platform=x64
back to top