From d1542e8a73f535011d42970cc5b1b28a414c14c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Micha=C3=ABl=20Celerier?= Date: Mon, 23 Sep 2019 16:57:06 +0200 Subject: Match qt_import_plugin API with qt5's Some work was needed to make the plug-in types, and which plug-ins are available for each type in client code. Change-Id: Ib71feca31069deca3d3f54c8613054f5f8ae410c Reviewed-by: Simon Hausmann Reviewed-by: Qt CMake Build Bot --- cmake/QtPlugins.cmake.in | 59 ++++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 49 insertions(+), 10 deletions(-) (limited to 'cmake/QtPlugins.cmake.in') diff --git a/cmake/QtPlugins.cmake.in b/cmake/QtPlugins.cmake.in index 5fcce8e42d..15a16137d4 100644 --- a/cmake/QtPlugins.cmake.in +++ b/cmake/QtPlugins.cmake.in @@ -10,13 +10,14 @@ if(NOT @BUILD_SHARED_LIBS@) endif() unset(_aliased_target) - set(_default_plugins_are_enabled "$>") + set(_default_plugins_are_enabled "$>,0>>") # Make sure to boolify the result of the expression, in case if the returned property value # is empty. set(_default_plugins_are_enabled_wrapped "$") set(_manual_plugins_genex "$>") set(_no_plugins_genex "$>") + # The code in here uses the properties defined in qt_import_plugins (Qt6CoreMacros.cmake) foreach(target @qt_plugins@) set(_plugin_target "@INSTALL_CMAKE_NAMESPACE@::${target}") get_target_property(_classname "${_plugin_target}" QT_PLUGIN_CLASS_NAME) @@ -25,22 +26,60 @@ if(NOT @BUILD_SHARED_LIBS@) continue() endif() + get_target_property(_plugin_type "${_plugin_target}" QT_PLUGIN_TYPE) + if(NOT _plugin_type) + message("Warning: plugin ${_plugin_target} has no type ('${_plugin_type}'), skipping.") + continue() + endif() + + list(APPEND "QT_ALL_PLUGINS_FOUND_BY_FIND_PACKAGE_${_plugin_type}" "${target}") + set(_plugin_is_default "$") - set(_plugin_is_not_blacklisted "$>") + + # INCLUDE set(_plugin_is_whitelisted "$") + # Note: qt_import_plugins sets the QT_PLUGINS_${_plugin_type} to "-" + # when excluding it with EXCLUDE_BY_TYPE, + # which ensures that no plug-in will be supported unless explicitly re-added afterwards. + string(CONCAT _plugin_is_not_blacklisted + "$" + ">," + # excludes both plugins targeted by EXCLUDE_BY_TYPE and not included in INCLUDE_BY_TYPE + "$>>" + ">" + ) + + # Support INCLUDE_BY_TYPE + string(CONCAT _plugin_is_in_type_whitelist + "$" + ">" + ">" + ) + + # Complete condition that defines whether a static plugin is linked string(CONCAT _plugin_condition - "$" - ">>" + "$" + ">>" ) + + # If this condition is true, we link against the plug-in set(_plugin_genex "$<${_plugin_condition}:${_plugin_target}>") target_link_libraries(${_module_target} INTERFACE "${_plugin_genex}") + + # Generate a source file to import that plug-in file(GENERATE OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/qt_@QT_MODULE@_${target}.cpp" CONTENT "#include \nQ_IMPORT_PLUGIN(${_classname})" -- cgit v1.2.3