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