File: build_vs12.bat

package info (click to toggle)
quickfix 1.15.1%2Bdfsg-4.3
  • links: PTS
  • area: main
  • in suites: trixie
  • size: 42,104 kB
  • sloc: cpp: 631,686; python: 129,549; ruby: 106,716; xml: 43,737; ansic: 7,668; java: 1,826; cs: 816; makefile: 544; sh: 462; sql: 313
file content (13 lines) | stat: -rw-r--r-- 341 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
echo off

set TARGET=%1
set CONFIGURATION=%2
set NET_VERSION=%3

if "%1" == "" set TARGET=Build
if "%2" == "" set CONFIGURATION=Release
if "%3" == "" set NET_VERSION=v4.5

set BUILD_CMD=MSBuild.exe quickfix_vs12.sln /t:%TARGET% /p:Configuration=%CONFIGURATION%;TargetFrameworkVersion=%NET_VERSION%
echo Build command: %BUILD_CMD%
%BUILD_CMD%