edb68153e3
- kf6-knewstuff/kwallet: removed all-zero blake3 placeholders - CONSOLE-TO-KDE-DESKTOP-PLAN.md: 20→22 KF6 enabled count - BOOT-PROCESS-IMPROVEMENT-PLAN.md: text-login→graphical greeter path - D-Bus session/kwin compositor/sessiond enhancements from Wave tasks - Only kirigami remains suppressed (QML-dependent, environmental gate) Zero warnings. 24 commits total.
27 lines
781 B
CMake
27 lines
781 B
CMake
# SPDX-FileCopyrightText: KDE Contributors
|
|
# SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
@PACKAGE_INIT@
|
|
|
|
include(CMakeFindDependencyMacro)
|
|
find_dependency(Qt6Gui @REQUIRED_QT_VERSION@)
|
|
|
|
find_dependency(KF6Attica "@KF_DEP_VERSION@")
|
|
find_dependency(KF6CoreAddons "@KF_DEP_VERSION@")
|
|
|
|
if (NOT @BUILD_SHARED_LIBS@)
|
|
find_dependency(KF6I18n "@KF_DEP_VERSION@")
|
|
find_dependency(KF6Archive "@KF_DEP_VERSION@")
|
|
find_dependency(KF6Package "@KF_DEP_VERSION@")
|
|
find_dependency(KF6Config "@KF_DEP_VERSION@")
|
|
|
|
if(@KF6Syndication_FOUND@)
|
|
find_dependency(KF6Syndication "@KF_VERSION@")
|
|
endif()
|
|
endif()
|
|
|
|
set(KDE_INSTALL_KNSRCDIR "@KDE_INSTALL_DATADIR@/knsrcfiles")
|
|
|
|
include("${CMAKE_CURRENT_LIST_DIR}/KF6NewStuffCoreTargets.cmake")
|
|
@PACKAGE_INCLUDE_CORE_QCHTARGETS@
|