From 3a57d45f2bff83583bec1a86eaf7e61b458355f0 Mon Sep 17 00:00:00 2001 From: Aleix Pol Date: Mon, 8 Oct 2018 16:55:44 +0200 Subject: [PATCH] Define KPeopleVCard as a runtime dependency of smsapp --- CMakeLists.txt | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index a173046fb..03bfa0ba8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -101,6 +101,13 @@ endif() option(SMSAPP_ENABLED OFF) if(SMSAPP_ENABLED) find_package(KF5People REQUIRED) + find_package(KF5PeopleVCard) + set_package_properties(KF5PeopleVCard PROPERTIES + PURPOSE "Read vcards from the file system" + URL "https://phabricator.kde.org/source/kpeoplevcard/" + TYPE RUNTIME + ) + add_subdirectory(smsapp) endif()