2014-03-14 14:13:41 -04:00
@ echo off
2019-02-20 13:01:41 -05:00
REM Install PS4 visualizer if the SDK and installation file are present
if exist " %~dp0 Engine\Extras\VisualStudioDebugging\PS4\InstallPS4Visualizer.bat " (
call " %~dp0 Engine\Extras\VisualStudioDebugging\PS4\InstallPS4Visualizer.bat "
)
2019-02-20 10:48:36 -05:00
2014-03-14 14:13:41 -04:00
if not exist " %~dp0 Engine\Build\BatchFiles\GenerateProjectFiles.bat " goto Error_BatchFileInWrongLocation
call " %~dp0 Engine\Build\BatchFiles\GenerateProjectFiles.bat " %*
2015-08-10 14:39:14 -04:00
exit /B %ERRORLEVEL%
2014-03-14 14:13:41 -04:00
: 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
2015-08-10 14:39:14 -04:00
exit /B 1