cf12defd28
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
26 lines
786 B
CMake
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@
|