Files
FlaxEngine/PackagePlatforms.bat
Wojtek Figat 14902dc29e Merge remote-tracking branch 'origin/master' into 1.8
# Conflicts:
#	Flax.flaxproj
2024-02-26 19:49:39 +01:00

24 lines
456 B
Batchfile

@echo off
rem Copyright (c) 2012-2024 Wojciech Figat. All rights reserved.
setlocal
pushd
echo Building and packaging platforms data...
rem Run the build tool.
call "Development\Scripts\Windows\CallBuildTool.bat" -deploy -deployPlatforms -dotnet=8 -verbose -log -logFile="Cache\Intermediate\PackageLog.txt" %*
if errorlevel 1 goto BuildToolFailed
popd
echo Done!
exit /B 0
:BuildToolFailed
echo Flax.Build tool failed.
goto Exit
:Exit
popd
exit /B 1