Warning, /libraries/kreport/src/KReportConfig.cmake.in is written in an unsupported language. File is not indexed.

0001 # KReportConfig.cmake provides information about the installed KReport library.
0002 # It can be used directly from CMake via find_package(KReport NO_MODULE)
0003 #
0004 # Any changes in this ".cmake" file will be overwritten by CMake, the source is the ".cmake.in" file.
0005 #
0006 # The following CMake variables are provided:
0007 #   KReport_VERSION_MAJOR - the major version number of KReport
0008 #   KReport_VERSION_MINOR - the minor version number of KReport
0009 #   KReport_VERSION_PATCH - the patch version number of KReport
0010 #   KReport_INCLUDE_DIRS  - the include directories to use
0011 #
0012 # Additionally, the following imported library targets are created, which may be used directly
0013 # with target_link_libraries():
0014 #   KReport - the KReport library
0015 
0016 @PACKAGE_INIT@
0017 
0018 include(CMakeFindDependencyMacro)
0019 
0020 find_dependency(Qt5Core @REQUIRED_QT_VERSION@)
0021 find_dependency(Qt5Widgets @REQUIRED_QT_VERSION@)
0022 find_dependency(Qt5Xml @REQUIRED_QT_VERSION@)
0023 find_dependency(Qt5PrintSupport @REQUIRED_QT_VERSION@)
0024 find_dependency(KF5CoreAddons @REQUIRED_KF5_VERSION@)
0025 find_dependency(KPropertyWidgets @REQUIRED_KPROPERTY_VERSION@)
0026 
0027 include("${CMAKE_CURRENT_LIST_DIR}/KReportTargets.cmake")
0028 include("${CMAKE_CURRENT_LIST_DIR}/KReportQCHTargets.cmake")
0029 
0030 @KREPORT_SETUP_AUTOMOC_VARIABLES@
0031 
0032 # "public" variables:
0033 
0034 set(KREPORT_SCRIPTING @KREPORT_SCRIPTING@)
0035 
0036 include(FeatureSummary)
0037 set_package_properties(KReport PROPERTIES
0038    DESCRIPTION "Framework for the creation and generation of reports in multiple formats"
0039    URL "https://community.kde.org/KReport")
0040 
0041 # TODO