Files
UnrealEngineUWP/GenerateProjectFiles.bat
nuno leiria bdbeebd9a3 Remove console specific .natvis, it's not necessary anymore. It also wasn't being used because the paths were broken.
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]
2022-01-19 09:50:21 -05:00

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