From 075b8153af554b0ea50d7ce63bd9b8fa6b51cd1d Mon Sep 17 00:00:00 2001 From: Heiko Becker Date: Fri, 11 Aug 2017 00:39:23 +0200 Subject: [PATCH] Search for Kirigami Summary: Makes it a bit more obvious that Kirigami is needed at runtime. Test Plan: Shows a nice status message Reviewers: #okular, aacid Tags: #okular Differential Revision: https://phabricator.kde.org/D7241 --- CMakeLists.txt | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index d87952e88..5c358cfc4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -61,6 +61,12 @@ if(NOT WIN32) Activities ) endif() +find_package(KF5Kirigami2) +set_package_properties(KF5Kirigami2 PROPERTIES + DESCRIPTION "A QtQuick based components set" + PURPOSE "Required at runtime by the mobile app" + TYPE RUNTIME +) find_package(Phonon4Qt5 CONFIG REQUIRED) set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_SOURCE_DIR}/cmake/modules)