40 lines
1.2 KiB
Batchfile
40 lines
1.2 KiB
Batchfile
@echo off
|
|
|
|
set BATCH_DIR=%~dp0
|
|
cd %BATCH_DIR%
|
|
cd ..\..
|
|
|
|
set MY_DIR=%CD%
|
|
|
|
call "build\auto\setup_arguments.cmd" %1 %2 %3 %4 %5 %6
|
|
|
|
call "build\auto\setup_%MPT_VS_VER%.cmd"
|
|
|
|
|
|
|
|
cd "build\%MPT_VS_WITHTARGET%" || goto error
|
|
|
|
msbuild libopenmpt_test.sln /target:Clean /property:Configuration=Release;Platform=%MPT_VS_ARCH% /maxcpucount /verbosity:minimal || goto error
|
|
|
|
msbuild libopenmpt.sln /target:Clean /property:Configuration=Release;Platform=%MPT_VS_ARCH% /maxcpucount /verbosity:minimal || goto error
|
|
msbuild openmpt123.sln /target:Clean /property:Configuration=Release;Platform=%MPT_VS_ARCH% /maxcpucount /verbosity:minimal || goto error
|
|
if "%MPT_VS_ARCH%" == "Win32" (
|
|
msbuild in_openmpt.sln /target:Clean /property:Configuration=Release;Platform=%MPT_VS_ARCH% /maxcpucount /verbosity:minimal || goto error
|
|
msbuild xmp-openmpt.sln /target:Clean /property:Configuration=Release;Platform=%MPT_VS_ARCH% /maxcpucount /verbosity:minimal || goto error
|
|
)
|
|
msbuild libopenmpt.sln /target:Clean /property:Configuration=ReleaseShared;Platform=%MPT_VS_ARCH% /maxcpucount /verbosity:minimal || goto error
|
|
|
|
cd ..\.. || goto error
|
|
|
|
|
|
|
|
goto noerror
|
|
|
|
:error
|
|
cd "%MY_DIR%"
|
|
exit 1
|
|
|
|
:noerror
|
|
cd "%MY_DIR%"
|
|
exit 0
|