You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
This represents UE4/Main @ 15913390 and Dev-PerfTest @ 15913304 [CL 15958515 by Marc Audy in ue5-main branch]
20 lines
637 B
Batchfile
Executable File
20 lines
637 B
Batchfile
Executable File
@echo off
|
|
|
|
rem First we check if nodejs is installed
|
|
for %%X in (node.exe) do (SET node=%%~$PATH:X)
|
|
if not defined node (
|
|
echo ERROR: Couldn't find node.js installed, Please install latest nodejs from https://nodejs.org/en/download/
|
|
exit 1
|
|
)
|
|
|
|
rem Let's check if it is a modern nodejs
|
|
node -e "process.exit( process.versions.node.split('.')[0] );"
|
|
echo Found Node.js version %errorlevel% (%node%)
|
|
|
|
if %errorlevel% LSS 8 (
|
|
echo ERROR: installed node.js version is too old, please install latest nodejs from https://nodejs.org/en/download/
|
|
exit 1
|
|
)
|
|
|
|
rem redirecting all command line arguments to node script
|
|
node Scripts/start.js %* |