Staging
v0.8.1
https://github.com/python/cpython
Revision 7b12cce65dc67c2c89fd21c5bb90a67f4e91d4ab authored by Eric Smith on 15 February 2010, 11:56:37 UTC, committed by Eric Smith on 15 February 2010, 11:56:37 UTC
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r78198 | eric.smith | 2010-02-15 06:55:38 -0500 (Mon, 15 Feb 2010) | 1 line

  Remove incorrect apostrophe.
........
1 parent 4bacaca
Raw File
Tip revision: 7b12cce65dc67c2c89fd21c5bb90a67f4e91d4ab authored by Eric Smith on 15 February 2010, 11:56:37 UTC
Merged revisions 78198 via svnmerge from
Tip revision: 7b12cce
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=

: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
if "%1"=="-d" (set conf=Debug) & shift & goto CheckOpts

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