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.cmd 1.0KB

1234567891011121314151617181920212223
  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. REM Install build tools specifically needed by Designer project
  12. REM powershell.exe -NoProfile -ExecutionPolicy Bypass -file "windows-get-dependencies.ps1" -manifest_file .\windows-build-tools.txt
  13. REM Install OV SDK and its dependencies
  14. powershell.exe -NoProfile -ExecutionPolicy Bypass -file "windows-get-dependencies.ps1" -manifest_file .\windows-dependencies-sdk.txt
  15. REM Install Designer dependencies
  16. powershell.exe -NoProfile -ExecutionPolicy Bypass -file "windows-get-dependencies.ps1" -manifest_file .\windows-dependencies.txt
  17. pause