1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
# KipiConfig.cmake provides information about the installed Kipi library.
# It can be used directly from CMake via find_package(Kipi NO_MODULE)
#
# The following CMake variables are provided:
# Kipi_VERSION_MAJOR - the major version number of Kipi
# Kipi_VERSION_MINOR - the minor version number of Kipi
# Kipi_VERSION_PATCH - the patch version number of Kipi
# Kipi_INCLUDE_DIRS - the include directories to use
#
# Additionally, the following imported library targets are created, which may be used directly
# with target_link_libraries():
# KF5::Kipi - the kipi library
@PACKAGE_INIT@
include(CMakeFindDependencyMacro)
find_dependency(Qt5Core @REQUIRED_QT_VERSION@)
find_dependency(Qt5Gui @REQUIRED_QT_VERSION@)
find_dependency(Qt5Widgets @REQUIRED_QT_VERSION@)
find_dependency(KF5Config)
find_dependency(KF5Service)
find_dependency(KF5XmlGui)
include("${CMAKE_CURRENT_LIST_DIR}/KF5KipiTargets.cmake")
|