Define KPeopleVCard as a runtime dependency of smsapp

This commit is contained in:
Aleix Pol 2018-10-08 16:55:44 +02:00
parent a7db3ab5e1
commit 3a57d45f2b

View file

@ -101,6 +101,13 @@ endif()
option(SMSAPP_ENABLED OFF) option(SMSAPP_ENABLED OFF)
if(SMSAPP_ENABLED) if(SMSAPP_ENABLED)
find_package(KF5People REQUIRED) 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) add_subdirectory(smsapp)
endif() endif()