Files
UnrealEngineUWP/GenerateProjectFiles.bat
BennyExtreme 7dfeadcbda PR #9101 Fixing references to UE4
#rnx
#jira UE-149334
#rb none

[CL 19947916 by BennyExtreme in ue5-main branch]
2022-04-27 17:46:11 -04:00

11 lines
407 B
Batchfile
Executable File

@echo off
if not exist "%~dp0Engine\Build\BatchFiles\GenerateProjectFiles.bat" goto Error_BatchFileInWrongLocation
call "%~dp0Engine\Build\BatchFiles\GenerateProjectFiles.bat" %*
exit /B %ERRORLEVEL%
:Error_BatchFileInWrongLocation
echo GenerateProjectFiles ERROR: The batch file does not appear to be located in the root UE directory. This script must be run from within that directory.
pause
exit /B 1