Staging
v0.5.2
https://github.com/python/cpython
Revision b09ec90e9be3fff3706175b33acf515adb9e1713 authored by Ned Deily on 03 January 2015, 08:45:25 UTC, committed by Ned Deily on 03 January 2015, 08:45:25 UTC
1 parent fef9b6c
Raw File
Tip revision: b09ec90e9be3fff3706175b33acf515adb9e1713 authored by Ned Deily on 03 January 2015, 08:45:25 UTC
Add missing URL link to Modernize docs.
Tip revision: b09ec90
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