You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
All .natvis types come from the cross platform Unreal.natvis #rb david.harvey #ROBOMERGE-AUTHOR: nuno.leiria #ROBOMERGE-SOURCE: CL 18657926 in //UE5/Release-5.0/... via CL 18657962 via CL 18657981 #ROBOMERGE-BOT: UE5 (Release-Engine-Test -> Main) (v900-18638592) [CL 18657996 by nuno leiria in ue5-main branch]
11 lines
408 B
Batchfile
Executable File
11 lines
408 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 UE4 directory. This script must be run from within that directory.
|
|
pause
|
|
exit /B 1
|