Files
RedBear-OS/local/recipes/kde/kirigami/source/KF6KirigamiConfig.cmake.in
T
2026-04-14 10:51:06 +01:00

26 lines
786 B
CMake

@PACKAGE_INIT@
# Any changes in this ".cmake" file will be overwritten by CMake, the source is the ".cmake.in" file.
include(CMakeFindDependencyMacro)
find_dependency(Qt6Core @REQUIRED_QT_VERSION@)
find_dependency(Qt6Qml @REQUIRED_QT_VERSION@)
find_dependency(Qt6Quick @REQUIRED_QT_VERSION@)
find_dependency(Qt6Concurrent @REQUIRED_QT_VERSION@)
if (@HAVE_OpenMP@)
find_dependency(OpenMP)
endif()
find_dependency(KF6KirigamiPlatform @PROJECT_VERSION@)
include("${CMAKE_CURRENT_LIST_DIR}/KF6KirigamiTargets.cmake")
if (NOT TARGET KF6::Kirigami AND TARGET KF6Kirigami)
add_library(KF6::Kirigami ALIAS KF6Kirigami)
endif()
set(Kirigami_INSTALL_PREFIX "@PACKAGE_CMAKE_INSTALL_PREFIX@")
include("${CMAKE_CURRENT_LIST_DIR}/KF6KirigamiMacros.cmake")
@PACKAGE_INCLUDE_QCHTARGETS@