aboutsummaryrefslogtreecommitdiff
path: root/qt/build.bat
diff options
context:
space:
mode:
authorConstantin Michael <constantin@codesynthesis.com>2011-03-25 17:52:14 +0200
committerConstantin Michael <constantin@codesynthesis.com>2011-04-22 18:04:37 +0200
commit242363e630f2f541bcf1b7133f21ab2730587c4f (patch)
tree93a44a63f5b97d07c52ef3dbfea4fc19f98e0a90 /qt/build.bat
parent4b5fde5c42ed096f500a4005fbfba6b198739955 (diff)
Update directory structure for Qt test
Diffstat (limited to 'qt/build.bat')
-rw-r--r--qt/build.bat109
1 files changed, 109 insertions, 0 deletions
diff --git a/qt/build.bat b/qt/build.bat
new file mode 100644
index 0000000..fd83e05
--- /dev/null
+++ b/qt/build.bat
@@ -0,0 +1,109 @@
+@echo off
+rem file : qt/build.bat
+rem author : Constantin Michael <constantin@codesynthesis.com>
+rem copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC
+rem license : GNU GPL v2; see accompanying LICENSE file
+
+rem
+rem Build Qt tests using the VC++ batch mode compilation.
+rem
+rem build.bat database vc-version conf plat [/Build|/Clean|/Rebuild]
+rem
+rem conf: {Debug,Release}|all
+rem plat: {Win32,x64}|all
+rem
+
+setlocal
+
+if "_%1_" == "__" (
+ echo no database specified
+ goto usage
+)
+
+if "_%2_" == "__" (
+ echo no VC++ version specified
+ goto usage
+)
+
+if "_%~3_" == "__" (
+ echo no configuration specified
+ goto usage
+)
+
+if "_%~4_" == "__" (
+ echo no platform specified
+ goto usage
+)
+
+set "failed="
+
+if "_%2_" == "_9_" set "vcver=9"
+if "_%2_" == "_10_" set "vcver=10"
+
+if "_%vcver%_" == "__" (
+ echo unknown VC++ version %2
+ goto usage
+)
+
+set "confs=%~3"
+set "plats=%~4"
+
+if "_%confs%_" == "_all_" set "confs=__path__(configurations)"
+if "_%plats%_" == "_all_" set "plats=__path__(platforms)"
+
+set "action=%5"
+if "_%action%_" == "__" set "action=/Build"
+
+set "devenv=%DEVENV%"
+if "_%devenv%_" == "__" set "devenv=devenv.com"
+
+goto start
+
+rem
+rem %1 - solution name
+rem %2 - configuration to build
+rem %3 - platform to build
+rem
+:run_build
+ echo.
+ echo building qt/%1 %3 %2
+ "%devenv%" %1 %action% "%2|%3" 2>&1
+ if errorlevel 1 set "failed=%failed% qt/%1\%3\%2"
+goto :eof
+
+:start
+
+for %%d in (%1) do (
+ for %%c in (%confs%) do (
+ for %%p in (%plats%) do (
+ call :run_build %%d/qt-%%d-vc%vcver%.sln %%c %%p
+ )
+ )
+)
+
+if not "_%failed%_" == "__" goto error
+
+echo.
+echo ALL BUILDS SUCCEEDED
+echo.
+goto end
+
+:usage
+echo.
+echo usage: build.bat database vc-version conf plat [action]
+echo valid configurations are: {Debug,Release}|all
+echo valid platforms are: {Win32,x64}|all
+echo valid actions are: /Build (default), /Clean, and /Rebuild
+echo.
+
+:error
+if not "_%failed%_" == "__" (
+ echo.
+ for %%t in (%failed%) do echo FAILED: %%t
+ echo.
+)
+endlocal
+exit /b 1
+
+:end
+endlocal