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
|