17 lines
524 B
Batchfile
17 lines
524 B
Batchfile
@echo off
|
|
REM Double-click to build Windows + macOS standalone builds of BLOCKLINE.
|
|
REM Output lands in dist\windows\ and dist\macos\.
|
|
powershell -NoProfile -ExecutionPolicy Bypass -File "%~dp0build-tools\Build-Game.ps1" %*
|
|
if errorlevel 1 (
|
|
echo.
|
|
echo Build fehlgeschlagen. Siehe logs\mac-build.log bzw. die Ausgabe oben.
|
|
pause
|
|
exit /b %errorlevel%
|
|
)
|
|
echo.
|
|
echo Windows und macOS wurden gebaut.
|
|
echo macOS: dist\macos\BLOCKLINE.zip
|
|
echo Das ZIP enthaelt die Signaturpruefung und Open-BLOCKLINE.command.
|
|
echo.
|
|
pause
|