Staging
v0.5.1
https://github.com/python/cpython
Revision 5e2760cc9f2cf9e0c57ef04a710d2c2ad05acc54 authored by Andrew M. Kuchling on 09 January 2008, 12:43:55 UTC, committed by Andrew M. Kuchling on 09 January 2008, 12:43:55 UTC
1 parent 4a3c7c7
Raw File
Tip revision: 5e2760cc9f2cf9e0c57ef04a710d2c2ad05acc54 authored by Andrew M. Kuchling on 09 January 2008, 12:43:55 UTC
Update reference to bug tracker
Tip revision: 5e2760c
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