From 62b7370b0239d4359d9efec8b7733474bb37423d Mon Sep 17 00:00:00 2001 From: Frank Dana Date: Thu, 16 Sep 2021 12:34:05 -0400 Subject: [PATCH] Add explicit QtSvg dependency (#731) * Add explicit QtSvg dependency * Add QtSvg to CI dependencies --- .github/workflows/ci.yml | 2 +- src/CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1ca60297..367fc48c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 15a7bcc8..e43c1c3a 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -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)