You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
20 lines
455 B
Batchfile
20 lines
455 B
Batchfile
|
|
@Rem Copyright Epic Games, Inc. All Rights Reserved.
|
||
|
|
|
||
|
|
@echo off
|
||
|
|
|
||
|
|
@Rem Set script location as working directory for commands.
|
||
|
|
pushd "%~dp0"
|
||
|
|
|
||
|
|
@Rem Ensure we have NodeJs available for calling.
|
||
|
|
call setup_node.bat
|
||
|
|
|
||
|
|
@Rem Ensure we have CoTURN available for calling.
|
||
|
|
call setup_coturn.bat
|
||
|
|
|
||
|
|
@Rem Move to cirrus.js directory and install its package.json
|
||
|
|
pushd %~dp0\..\..\
|
||
|
|
call platform_scripts\cmd\node\npm install --no-save
|
||
|
|
popd
|
||
|
|
|
||
|
|
@Rem Pop working directory
|
||
|
|
popd
|