added OpenCV-dependency to AppVeyor/Travis CI-builds

This commit is contained in:
jkriege2 2020-08-14 12:07:43 +02:00
parent 8910547089
commit 35965b2e09
2 changed files with 3 additions and 1 deletions

View File

@ -72,6 +72,8 @@ install:
- echo "BUILD ID Qt%QTVER%_%QTABI%_%APPVEYOR_BUILD_VERSION%_%CONFIGURATION%"
# Rename sh.exe as sh.exe in PATH interferes with MinGW
- rename "C:\Program Files\Git\usr\bin\sh.exe" "sh2.exe"
- cmd: choco install OpenCV
- cmd: set OPENCV_DIR=C:\tools\opencv\build
build_script:
# - dir "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Tools\MSVC\14.16.27023\include"

View File

@ -23,7 +23,7 @@ conda config --add channels conda-forge --force
# Useful for debugging any issues with conda
conda info -a
conda_pkgs="qt cmake"
conda_pkgs="qt cmake opencv"
conda create -q -p $our_install_dir ${conda_pkgs}