1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-21 09:42:10 +02:00

CMake: Add feature summary

This commit is contained in:
David Rosca 2017-09-26 15:38:28 +02:00
parent 2732aadda6
commit f7a364b965

View File

@ -92,7 +92,8 @@ endif()
# Optional: KWallet
set(KF5_MIN_VERSION "5.27.0")
find_package(KF5 ${KF5_MIN_VERSION} COMPONENTS Wallet)
find_package(KF5Wallet ${KF5_MIN_VERSION} CONFIG)
set_package_properties(KF5Wallet PROPERTIES DESCRIPTION "KWallet password backend plugin" TYPE OPTIONAL)
# Git revision
if (EXISTS "${CMAKE_SOURCE_DIR}/.git")
@ -140,3 +141,4 @@ include_directories(
add_subdirectory(src)
add_subdirectory(tests/autotests)
feature_summary(WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES)