Staging
v0.8.1
https://github.com/python/cpython
Revision b80a19453175a5e459a0aca462ddcc75e36a5df7 authored by Kurt B. Kaiser on 14 February 2008, 00:08:01 UTC, committed by Kurt B. Kaiser on 14 February 2008, 00:08:01 UTC
1 parent 21af4c0
Raw File
Tip revision: b80a19453175a5e459a0aca462ddcc75e36a5df7 authored by Kurt B. Kaiser on 14 February 2008, 00:08:01 UTC
Bring NEWS.txt up to date.
Tip revision: b80a194
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