cf12defd28
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
17 lines
502 B
CMake
17 lines
502 B
CMake
@PACKAGE_INIT@
|
|
|
|
include(CMakeFindDependencyMacro)
|
|
find_dependency(Qt6Core @REQUIRED_QT_VERSION@)
|
|
if (@BUILD_WITH_QML@ AND NOT @BUILD_SHARED_LIBS@)
|
|
find_dependency(Qt6Qml @REQUIRED_QT_VERSION@)
|
|
endif()
|
|
|
|
# This is no longer used by the macros, but we should keep it in case
|
|
# something else is using it.
|
|
set(KI18N_MODULE_DIR "${CMAKE_CURRENT_LIST_DIR}")
|
|
|
|
include("${CMAKE_CURRENT_LIST_DIR}/KF6I18nTargets.cmake")
|
|
@PACKAGE_INCLUDE_QCHTARGETS@
|
|
include("${CMAKE_CURRENT_LIST_DIR}/KF6I18nMacros.cmake")
|
|
|