# SPDX-FileCopyrightText: 2015 Aleix Pol Gonzalez # SPDX-FileCopyrightText: 2023 Alexander Lohnau # # SPDX-License-Identifier: BSD-3-Clause #[=======================================================================[.rst: ECMFindQmlModule ---------------- Finds QML import modules to set them as dependencies. Because QML modules are not hard compile time requirements, they can be easy to miss by packagers and developers, causing suboptimal build results or runtime issues. Use this CMake module to ensure a QML module is installed at compile time during CMake configuration. Internally, this CMake module looks for the qmldir and, if needed, uses qmlplugindump to find the plugins and set them up as dependencies. :: ecm_find_qmlmodule( # Optional for Qt6 builds [REQUIRED] # Since 6.0 ) Usage example: .. code-block:: cmake ecm_find_qmlmodule(org.kde.kirigami 2.1) ecm_find_qmlmodule(org.kde.kirigami 2.1 REQUIRED) # CMake will fail if the required version is not found ecm_find_qmlmodule(org.kde.kirigami) # Find it without a given version ecm_find_qmlmodule(org.kde.kirigami REQUIRED) # CMake will fail if it is not found Since 5.38.0. #]=======================================================================] cmake_policy(VERSION 3.16) set(MODULES_DIR ${CMAKE_CURRENT_LIST_DIR}) function(ecm_find_qmlmodule MODULE_NAME) if (QT_MAJOR_VERSION STREQUAL 6) cmake_parse_arguments(ARG REQUIRED "" "" ${ARGN}) if (ARG_UNPARSED_ARGUMENTS) list(GET ARG_UNPARSED_ARGUMENTS 0 VERSION) # If we have any unparsed args, that should be the version endif() set(ARGN "") # The find_package call below should not receive arguments in KF6 else() list(GET ARGN 0 VERSION) list(REMOVE_AT ARGN 0) endif() set(GENMODULE "${MODULE_NAME}-QMLModule") configure_file("${MODULES_DIR}/ECMFindQmlModule.cmake.in" "Find${GENMODULE}.cmake" @ONLY) set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_BINARY_DIR}" ${CMAKE_MODULE_PATH}) find_package(${GENMODULE} ${ARGN}) if(COMMAND set_package_properties) if (ARG_REQUIRED) set(TYPE_STRING TYPE REQUIRED) endif() set_package_properties(${GENMODULE} PROPERTIES DESCRIPTION "QML module '${MODULE_NAME}' is a dependency." ${TYPE_STRING}) endif() endfunction()