Staging
v0.5.1
https://github.com/python/cpython
Revision a822768c62c62539d022c65e8db5f7d0f85757aa authored by Mark Dickinson on 11 December 2009, 20:09:24 UTC, committed by Mark Dickinson on 11 December 2009, 20:09:24 UTC
1 parent 02d3dcd
Raw File
Tip revision: a822768c62c62539d022c65e8db5f7d0f85757aa authored by Mark Dickinson on 11 December 2009, 20:09:24 UTC
Restore the svn property changes in r76754
Tip revision: a822768
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