blob: 03534f3bb037efcc0fc9b9839894a0181598cbd4 [file] [log] [blame]
Zachary Ware4c9c8482015-04-13 11:59:54 -05001@echo off
2rem A batch program to build or rebuild a particular configuration.
3rem just for convenience.
4
5setlocal
6set platf=Win32
7set conf=Release
8set target=build
9set dir=%~dp0
10
11:CheckOpts
12if "%1"=="-c" (set conf=%2) & shift & shift & goto CheckOpts
13if "%1"=="-p" (set platf=%2) & shift & shift & goto CheckOpts
14if "%1"=="-r" (set target=rebuild) & shift & goto CheckOpts
15if "%1"=="-d" (set conf=Debug) & shift & goto CheckOpts
16
17set cmd=msbuild /p:useenv=true %dir%pcbuild.sln /t:%target% /p:Configuration=%conf% /p:Platform=%platf%
18echo %cmd%
19%cmd%