34 lines
607 B
Batchfile
34 lines
607 B
Batchfile
@echo off
|
|
|
|
set BATCH_DIR=%~dp0
|
|
cd %BATCH_DIR%
|
|
cd ..\..
|
|
|
|
set MY_DIR=%CD%
|
|
|
|
call "build\auto\setup_arguments_winrt.cmd" %1 %2 %3 %4 %5 %6
|
|
|
|
call "build\auto\setup_%MPT_VS_VER%.cmd"
|
|
|
|
|
|
|
|
cd "build\%MPT_VS_TARGET%" || goto error
|
|
|
|
msbuild libopenmpt.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
|