Files
UnrealEngineUWP/Engine/Build/BatchFiles/Rebuild.bat
Ben Marsh 99be00dcdb Merging latest from Private-Starship.
[CL 13192225 by Ben Marsh in ue5-main branch]
2020-05-05 18:50:52 -04:00

25 lines
453 B
Batchfile
Executable File

@echo off
REM %1 is the game name
REM %2 is the platform name
REM %3 is the configuration name
IF NOT EXIST "%~dp0\Clean.bat" GOTO Error_MissingCleanBatchFile
call "%~dp0\Clean.bat" %*
IF NOT EXIST "%~dp0\Build.bat" GOTO Error_MissingBuildBatchFile
call "%~dp0\Build.bat" %*
GOTO Exit
:Error_MissingCleanBatchFile
ECHO Clean.bat not found in "%~dp0"
EXIT /B 999
:Error_MissingBuildBatchFile
ECHO Build.bat not found in "%~dp0"
EXIT /B 999
:Exit