setup.bat 455 B

1234567891011121314151617181920
  1. @Rem Copyright Epic Games, Inc. All Rights Reserved.
  2. @echo off
  3. @Rem Set script location as working directory for commands.
  4. pushd "%~dp0"
  5. @Rem Ensure we have NodeJs available for calling.
  6. call setup_node.bat
  7. @Rem Ensure we have CoTURN available for calling.
  8. call setup_coturn.bat
  9. @Rem Move to cirrus.js directory and install its package.json
  10. pushd %~dp0\..\..\
  11. call platform_scripts\cmd\node\npm install --no-save
  12. popd
  13. @Rem Pop working directory
  14. popd