You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

windows-install-dependencies-x64.cmd 1.3KB

123456789101112131415161718192021222324
  1. REM Install Designer dependencies
  2. REM This script can be copied, renamed as `windows-install-dependencies-custom.cmd`
  3. REM and updated with the right credentials in PROXYPASS, such as username:password
  4. REM
  5. @echo off
  6. echo Install all dependencies
  7. REM In order to download dependencies, PROXYPASS must be changed with appropriate credentials
  8. REM set PROXYPASS=XXX:XXX
  9. set URL=https://extranet.mensiatech.com/dependencies
  10. if not exist "..\dependencies\arch\build\windows" ( mkdir "..\dependencies\arch\build\windows" )
  11. if not exist "..\dependencies_x64\arch\build\windows" ( mkdir "..\dependencies_x64\arch\build\windows" )
  12. REM Install build tools, CMake, Ninja, comment line if you already have an instance of CMake installed
  13. powershell.exe -NoProfile -ExecutionPolicy Bypass -file "windows-get-dependencies.ps1" -manifest_file .\windows-build-tools.txt
  14. REM Install OV SDK and its dependencies - x64
  15. powershell.exe -NoProfile -ExecutionPolicy Bypass -file "windows-get-dependencies.ps1" -manifest_file .\windows-dependencies-sdk-x64.txt -dest_dir .\..\dependencies_x64
  16. REM Install Designer dependencies - x64
  17. powershell.exe -NoProfile -ExecutionPolicy Bypass -file "windows-get-dependencies.ps1" -manifest_file .\windows-dependencies-x64.txt -dest_dir .\..\dependencies_x64
  18. pause