Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 906e26e897b4b2e4b938c65fc4cf9d3b13fa069d authored by Martin v. Löwis on 14 January 2010, 17:41:58 UTC
Prepare for 2.5.5c1.
Tip revision: 906e26e
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 build=/build

: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 build=/rebuild)    & shift & goto CheckOpts

set cmd=devenv pcbuild.sln %build% "%conf%|%platf%"
echo %cmd%
%cmd%
back to top