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

#ROBOMERGE-AUTHOR: ryan.hummer
#ROBOMERGE-SOURCE: CL 19947916 in //UE5/Main/...
#ROBOMERGE-BOT: UE5 (Main -> Release-Engine-Staging) (v943-19904690)

[CL 19947976 by BennyExtreme in ue5-release-engine-staging branch]
2022-04-27 17:48:25 -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