Files
UnrealEngine/GenerateProjectFiles.bat
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05: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