2010-11-06 23:04:47 +01:00
|
|
|
@echo off
|
2010-11-10 17:03:01 +01:00
|
|
|
set "LAMEXP_ERROR=1"
|
2010-11-06 23:04:47 +01:00
|
|
|
echo ----------------------------------------------------------------
|
|
|
|
echo Solution File: %1
|
2010-11-11 00:25:23 +01:00
|
|
|
echo Configuration: %~2
|
2010-11-06 23:04:47 +01:00
|
|
|
echo ----------------------------------------------------------------
|
2011-04-19 16:21:19 +02:00
|
|
|
call "%~dp0\_paths.bat"
|
2010-11-10 21:39:37 +01:00
|
|
|
if not "%LAMEXP_ERROR%"=="0" GOTO:EOF
|
|
|
|
REM -----------------------------------------------------------------
|
|
|
|
call "%PATH_MSVC90%\VC\bin\vcvars32.bat" x86
|
2011-04-19 16:28:25 +02:00
|
|
|
call "%PATH_QTMSVC%\bin\qtenv2.bat"
|
2010-11-09 22:06:11 +01:00
|
|
|
REM -----------------------------------------------------------------
|
2010-11-10 21:39:37 +01:00
|
|
|
set "LAMEXP_ERROR=1"
|
2011-10-20 22:36:34 +02:00
|
|
|
msbuild.exe /property:Configuration=%2 /property:Platform=Win32 /target:Clean /verbosity:normal %1
|
2010-11-12 21:02:14 +01:00
|
|
|
if not "%ERRORLEVEL%"=="0" GOTO:EOF
|
2010-11-09 22:06:11 +01:00
|
|
|
echo ----------------------------------------------------------------
|
2010-11-12 21:02:14 +01:00
|
|
|
set "LAMEXP_ERROR=1"
|
2011-10-20 22:36:34 +02:00
|
|
|
msbuild.exe /property:Configuration=%2 /property:Platform=Win32 /target:Rebuild /verbosity:normal %1
|
|
|
|
msbuild.exe /property:Configuration=%2 /property:Platform=Win32 /target:Build /verbosity:normal %1
|
2010-11-20 03:11:12 +01:00
|
|
|
if not "%ERRORLEVEL%"=="0" GOTO:EOF
|
2010-11-09 22:06:11 +01:00
|
|
|
echo ----------------------------------------------------------------
|
2010-11-10 17:03:01 +01:00
|
|
|
set "LAMEXP_ERROR=0"
|