23 lines
1.1 KiB
Batchfile
23 lines
1.1 KiB
Batchfile
@echo off
|
|
set "LAMEXP_ERROR=1"
|
|
echo ----------------------------------------------------------------
|
|
echo Solution File: %1
|
|
echo Configuration: %~2
|
|
echo ----------------------------------------------------------------
|
|
call "%~dp0\_paths.bat"
|
|
if not "%LAMEXP_ERROR%"=="0" GOTO:EOF
|
|
REM -----------------------------------------------------------------
|
|
call "%PATH_MSVC90%\VC\bin\vcvars32.bat" x86
|
|
call "%PATH_QTMSVC%\bin\qtenv2.bat"
|
|
REM -----------------------------------------------------------------
|
|
set "LAMEXP_ERROR=1"
|
|
msbuild.exe /property:Configuration=%2 /property:Platform=Win32 /target:Clean /verbosity:detailed %1
|
|
if not "%ERRORLEVEL%"=="0" GOTO:EOF
|
|
echo ----------------------------------------------------------------
|
|
set "LAMEXP_ERROR=1"
|
|
msbuild.exe /property:Configuration=%2 /property:Platform=Win32 /target:Rebuild /verbosity:detailed %1
|
|
msbuild.exe /property:Configuration=%2 /property:Platform=Win32 /target:Build /verbosity:detailed %1
|
|
if not "%ERRORLEVEL%"=="0" GOTO:EOF
|
|
echo ----------------------------------------------------------------
|
|
set "LAMEXP_ERROR=0"
|