12345678910111213141516171819202122232425262728 |
- :ReleaseWin64
- cd "SMP"
- SET RETURN=ReleaseWin64
- SET NEXT=ReleaseWin32
- "%InstallDir%\%MSBuildExe%" "SMP.vcxproj" /p:configuration=release /p:platform=x64
- if errorlevel 1 GOTO Error
- cd ..
- :ReleaseWin32
- cd "SMP"
- SET RETURN=ReleaseWin32
- SET NEXT=ReleaseWin64H
- "%InstallDir%\%MSBuildExe%" "SMP.vcxproj" /p:configuration=release /p:platform=win32
- if errorlevel 1 GOTO Error
- cd ..
- :ReleaseWin64H
- cd "SMP Headless"
- SET RETURN=ReleaseWin64H
- SET NEXT=END
- "%InstallDir%\%MSBuildExe%" "SMP Headless.vcxproj" /p:configuration=release /p:platform=x64
- if errorlevel 1 GOTO Error
- cd ..
- GOTO End
- :Error
- cd ..
- SET /p redo=Nochmal versuchen?(j/n):
- IF /I '%redo%' equ 'j' GOTO %RETURN%
- GOTO %NEXT%
- :End
|