You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#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]
11 lines
407 B
Batchfile
Executable File
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
|