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-all.cmd 1.1KB

1234567891011121314151617181920212223
  1. REM Install OV SDK 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\arch\data" ( mkdir "..\dependencies\arch\data" )
  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 dependencies
  15. powershell.exe -NoProfile -ExecutionPolicy Bypass -file "windows-get-dependencies.ps1" -manifest_file .\windows-dependencies-x86.txt
  16. REM Retrieve test data
  17. powershell.exe -NoProfile -ExecutionPolicy Bypass -file "windows-get-dependencies.ps1" -manifest_file .\tests-data.txt
  18. pause