From 3244e868e75856f0fcce23797bd3ace9c74aa946 Mon Sep 17 00:00:00 2001 From: Gaute Lindkvist Date: Tue, 3 Sep 2019 19:07:09 +0200 Subject: [PATCH] #4672 Bundle missing Qt5 libs --- ApplicationCode/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ApplicationCode/CMakeLists.txt b/ApplicationCode/CMakeLists.txt index c44aa88222..b762ecf03a 100644 --- a/ApplicationCode/CMakeLists.txt +++ b/ApplicationCode/CMakeLists.txt @@ -13,8 +13,8 @@ if (RESINSIGHT_BUILD_WITH_QT5) endif(RESINSIGHT_BUILD_WITH_QT5) if (Qt5Core_FOUND) - find_package(Qt5 CONFIG REQUIRED Core Gui OpenGL Network Script Widgets) - set(QT_LIBRARIES Qt5::Core Qt5::Gui Qt5::Network Qt5::OpenGL Qt5::Script Qt5::Widgets) + find_package(Qt5 CONFIG REQUIRED Core Gui OpenGL Network Script Widgets Xml Concurrent PrintSupport) + set(QT_LIBRARIES Qt5::Core Qt5::Gui Qt5::Network Qt5::OpenGL Qt5::Script Qt5::Widgets Qt5::Xml Qt5::Concurrent Qt5::PrintSupport) else() set (QT_COMPONENTS_REQUIRED QtCore QtGui QtMain QtOpenGl QtNetwork QtScript) find_package(Qt4 COMPONENTS ${QT_COMPONENTS_REQUIRED} REQUIRED)