cf12defd28
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
32 lines
923 B
CMake
32 lines
923 B
CMake
@PACKAGE_INIT@
|
|
|
|
# Any changes in this ".cmake" file will be overwritten by CMake, the source is the ".cmake.in" file.
|
|
|
|
include("${CMAKE_CURRENT_LIST_DIR}/KF6ConfigTargets.cmake")
|
|
@PACKAGE_INCLUDE_QCHTARGETS@
|
|
|
|
include(CMakeFindDependencyMacro)
|
|
|
|
if(NOT @BUILD_SHARED_LIBS@)
|
|
find_dependency(Qt6Xml @REQUIRED_QT_VERSION@)
|
|
endif()
|
|
|
|
if(@KCONFIG_USE_DBUS@)
|
|
find_dependency(Qt6DBus "@REQUIRED_QT_VERSION@")
|
|
endif()
|
|
|
|
if(@KCONFIG_USE_QML@)
|
|
find_dependency(Qt6Qml "@REQUIRED_QT_VERSION@")
|
|
endif()
|
|
|
|
if(CMAKE_CROSSCOMPILING AND KF6_HOST_TOOLING)
|
|
find_file(KCONFIGCOMPILER_PATH KF6Config/KF6ConfigCompilerTargets.cmake
|
|
PATHS ${KF6_HOST_TOOLING} ${CMAKE_CURRENT_LIST_DIR}
|
|
NO_DEFAULT_PATH
|
|
NO_CMAKE_FIND_ROOT_PATH)
|
|
include("${KCONFIGCOMPILER_PATH}")
|
|
else()
|
|
include("${CMAKE_CURRENT_LIST_DIR}/KF6ConfigCompilerTargets.cmake")
|
|
endif()
|
|
include("${CMAKE_CURRENT_LIST_DIR}/KF6ConfigMacros.cmake")
|