From 0f10fef43df9f1d5696f01be510dfc4a839bf60a Mon Sep 17 00:00:00 2001 From: Bhushan Shah Date: Tue, 30 Mar 2021 15:28:45 +0530 Subject: [PATCH] cmake: mark kwin dbus interface as required --- CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index c74aec8a..5cd4c83b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -42,6 +42,10 @@ find_package(KF5 ${KF5_MIN_VERSION} REQUIRED COMPONENTS Wayland ) find_package(KWinDBusInterface) +set_package_properties(KWinDBusInterface PROPERTIES DESCRIPTION "KWin DBus interface" + TYPE REQUIRED + PURPOSE "Needed for virtual keyboard toggle button" +) include(CheckIncludeFiles)