Staging
v0.8.1
Revision cac8f585b12e2598783b7c570108eaa8d2262c4c authored by Martin v. Löwis on 13 June 2008, 18:19:49 UTC, committed by Martin v. Löwis on 13 June 2008, 18:19:49 UTC
1 parent cc0f2b2
Raw File
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