Skip to content
Snippets Groups Projects
Commit 0a0edfad authored by Adriaan de Groot's avatar Adriaan de Groot
Browse files

CMake: do REQUIRED searches at beginning, avoid toggle of KF5 status

parent 0500eb54
No related branches found
No related tags found
No related merge requests found
...@@ -348,36 +348,15 @@ if(ECM_FOUND) ...@@ -348,36 +348,15 @@ if(ECM_FOUND)
include(KDEInstallDirs) include(KDEInstallDirs)
endif() endif()
find_package(${kfname} ${KF_VERSION} QUIET COMPONENTS CoreAddons) find_package(${kfname} ${KF_VERSION} QUIET REQUIRED COMPONENTS CoreAddons)
set_package_properties( # After this point, there should be no REQUIRED find_packages,
${kfname} # since we want tidy reporting of optional dependencies.
PROPERTIES
TYPE REQUIRED
DESCRIPTION "KDE Frameworks (CoreAddons)"
URL "https://api.kde.org/frameworks/kcoreaddons/"
PURPOSE "About Calamares"
)
feature_summary(
WHAT REQUIRED_PACKAGES_NOT_FOUND
FATAL_ON_MISSING_REQUIRED_PACKAGES
DESCRIPTION "The following REQUIRED packages were not found:"
QUIET_ON_EMPTY
)
# #
# OPTIONAL DEPENDENCIES # OPTIONAL DEPENDENCIES
# #
# First, set KF back to optional so that any missing components don't trip us up. # First, set KF back to optional so that any missing components don't trip us up.
find_package(${kfname} ${KF_VERSION} QUIET COMPONENTS CoreAddons Crash) find_package(${kfname} ${KF_VERSION} QUIET COMPONENTS CoreAddons Crash)
set_package_properties(
${kfname}
PROPERTIES
TYPE OPTIONAL
DESCRIPTION "KDE Frameworks"
URL "https://api.kde.org/frameworks/"
PURPOSE "KDE Integration"
)
if(NOT TARGET ${kfname}::Crash) if(NOT TARGET ${kfname}::Crash)
if(BUILD_CRASH_REPORTING) if(BUILD_CRASH_REPORTING)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment