0fb9732866
Using the new extra-cmake-modules module ECMAddQch (since 5.36.0) this adds the option to automatically build and install a file in QCH format with the docs about the public API, which then can be used e.g. in Qt Assistant, Qt Creator or KDevelop. Additionally the installed cmake config files will be extended with a target KF5Plasma_QCH containing information about how to "link" into the generated QCH file, which then can be used in the cmake build system of other libraries building on this library, by simply listing this target in "LINK_QCHS" of their ecm_add_qch() usage. And a respective doxygen tag file with all the metadata about the generated QCH file and used for the "linking" will be created and installed. Pass -DBUILD_QCH=ON to cmake to enable this.
23 lines
867 B
CMake
23 lines
867 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}/KF5PlasmaTargets.cmake")
|
|
@PACKAGE_INCLUDE_QCHTARGETS@
|
|
|
|
set(Plasma_INSTALL_PREFIX "@PACKAGE_CMAKE_INSTALL_PREFIX@")
|
|
|
|
set(Plasma_LIBRARIES KF5::Plasma)
|
|
|
|
set(PLASMA_DATAENGINES_PLUGINDIR ${KDE_INSTALL_PLUGINDIR}/plasma/dataengine)
|
|
set(PLASMA_PLASMOIDS_PLUGINDIR ${KDE_INSTALL_PLUGINDIR}/plasma/applets)
|
|
set(PLASMA_SCRIPTENGINES_PLUGINDIR ${KDE_INSTALL_PLUGINDIR}/plasma/scriptengines)
|
|
set(PLASMA_CONTAINMENTACTIONS_PLUGINDIR ${KDE_INSTALL_PLUGINDIR}/plasma/containmentactions)
|
|
|
|
include(CMakeFindDependencyMacro)
|
|
find_dependency(Qt5Gui "@REQUIRED_QT_VERSION@")
|
|
find_dependency(KF5Package "@KF5_DEP_VERSION@")
|
|
find_dependency(KF5Service "@KF5_DEP_VERSION@")
|
|
|
|
include("${CMAKE_CURRENT_LIST_DIR}/KF5PlasmaMacros.cmake")
|