Add explicit QtSvg dependency (#731)

* Add explicit QtSvg dependency
* Add QtSvg to CI dependencies
This commit is contained in:
Frank Dana
2021-09-16 12:34:05 -04:00
committed by GitHub
parent 21597c8a43
commit 62b7370b02
2 changed files with 2 additions and 2 deletions

View File

@@ -39,7 +39,7 @@ jobs:
sudo apt install \
cmake swig doxygen graphviz curl lcov \
libasound2-dev \
qtbase5-dev qtbase5-dev-tools \
qtbase5-dev qtbase5-dev-tools libqt5svg5-dev \
libfdk-aac-dev libavcodec-dev libavformat-dev libavdevice-dev libavutil-dev libavfilter-dev libswscale-dev libpostproc-dev libswresample-dev \
libzmq3-dev libmagick++-dev \
libopencv-dev libprotobuf-dev protobuf-compiler

View File

@@ -284,7 +284,7 @@ endif ()
################# QT5 ###################
# Find QT5 libraries
set(_qt_components Core Gui Widgets)
set(_qt_components Core Gui Widgets Svg)
find_package(Qt5 COMPONENTS ${_qt_components} REQUIRED)
foreach(_qt_comp IN LISTS _qt_components)