Staging
v0.5.1
https://github.com/python/cpython
Revision 2f253e8e626fa74e78cddfb1a79b8c1e7bbbab9c authored by Nick Coghlan on 29 July 2013, 05:18:09 UTC, committed by Nick Coghlan on 29 July 2013, 05:18:09 UTC
1 parent 015b453
Raw File
Tip revision: 2f253e8e626fa74e78cddfb1a79b8c1e7bbbab9c authored by Nick Coghlan on 29 July 2013, 05:18:09 UTC
Attempt to fix #15415 on Windows
Tip revision: 2f253e8
build.bat
@echo off
rem A batch program to build or rebuild a particular configuration.
rem just for convenience.

setlocal
set platf=Win32
set conf=Release
set target=build
set dir=%~dp0

:CheckOpts
if "%1"=="-c" (set conf=%2) & shift & shift & goto CheckOpts
if "%1"=="-p" (set platf=%2) & shift & shift & goto CheckOpts
if "%1"=="-r" (set target=rebuild) & shift & goto CheckOpts
if "%1"=="-d" (set conf=Debug) & shift & goto CheckOpts

set cmd=msbuild /p:useenv=true %dir%pcbuild.sln /t:%target% /p:Configuration=%conf% /p:Platform=%platf%
echo %cmd%
%cmd%
back to top