2019-11-21 12:33:28 +00:00
|
|
|
include_guard(DIRECTORY)
|
2019-06-07 07:13:31 +00:00
|
|
|
@QT_MODULE_PLUGIN_INCLUDES@
|
|
|
|
|
2021-01-20 07:05:25 +00:00
|
|
|
# Use a function to hide all the temporary variables we use so they don't leak
|
|
|
|
# out into the consuming scope
|
|
|
|
function(__qt_internal_add_static_plugins_once)
|
2019-06-07 07:13:31 +00:00
|
|
|
set(_module_target "@INSTALL_CMAKE_NAMESPACE@::@QT_MODULE@")
|
2021-01-07 16:26:55 +00:00
|
|
|
set(_qt_plugins "")
|
2021-01-07 15:55:51 +00:00
|
|
|
|
|
|
|
# Include all PluginConfig.cmake files and update the QT_PLUGINS property of the module.
|
|
|
|
file(GLOB _qt_plugin_config_files "${CMAKE_CURRENT_LIST_DIR}/@INSTALL_CMAKE_NAMESPACE@*PluginConfig.cmake")
|
|
|
|
foreach(_config_file ${_qt_plugin_config_files})
|
|
|
|
string(REGEX REPLACE "^.*/@INSTALL_CMAKE_NAMESPACE@(.*Plugin)Config.cmake$" "\\1" _qt_plugin "${_config_file}")
|
|
|
|
include("${_config_file}")
|
|
|
|
list(APPEND _qt_plugins ${_qt_plugin})
|
|
|
|
endforeach()
|
|
|
|
set_property(TARGET ${_module_target} PROPERTY QT_PLUGINS ${_qt_plugins})
|
|
|
|
|
2019-07-22 17:27:36 +00:00
|
|
|
# Properties can't be set on aliased targets, so make sure to unalias the target. This is needed
|
|
|
|
# when Qt examples are built as part of the Qt build itself.
|
|
|
|
get_target_property(_aliased_target ${_module_target} ALIASED_TARGET)
|
|
|
|
if(_aliased_target)
|
|
|
|
set(_module_target ${_aliased_target})
|
|
|
|
endif()
|
2021-01-20 07:05:25 +00:00
|
|
|
|
|
|
|
get_target_property(_have_added_plugins_already ${_module_target} __qt_internal_plugins_added)
|
|
|
|
if(_have_added_plugins_already)
|
|
|
|
return()
|
|
|
|
endif()
|
2019-06-07 07:13:31 +00:00
|
|
|
|
2019-09-23 14:57:06 +00:00
|
|
|
set(_default_plugins_are_enabled "$<NOT:$<STREQUAL:$<GENEX_EVAL:$<TARGET_PROPERTY:QT_DEFAULT_PLUGINS>>,0>>")
|
2019-07-22 17:27:36 +00:00
|
|
|
# Make sure to boolify the result of the expression, in case if the returned property value
|
|
|
|
# is empty.
|
|
|
|
set(_default_plugins_are_enabled_wrapped "$<BOOL:${_default_plugins_are_enabled}>")
|
2019-06-07 07:13:31 +00:00
|
|
|
set(_manual_plugins_genex "$<GENEX_EVAL:$<TARGET_PROPERTY:QT_PLUGINS>>")
|
|
|
|
set(_no_plugins_genex "$<GENEX_EVAL:$<TARGET_PROPERTY:QT_NO_PLUGINS>>")
|
|
|
|
|
2020-08-05 12:56:51 +00:00
|
|
|
# Plugin genex marker for prl processing.
|
|
|
|
set(_is_plugin_marker_genex "$<BOOL:QT_IS_PLUGIN_GENEX>")
|
|
|
|
|
2019-11-21 12:33:28 +00:00
|
|
|
# In super builds the rules below pollute the dependency rule for the
|
|
|
|
# plugin target when it's being build, causing cyclic dependencies.
|
|
|
|
# to overcome this, we check if the current target where this rule evaluates
|
|
|
|
# has a QT_BUILD_PROJECT_NAME equal to the current PROJECT_NAME.
|
|
|
|
# If so we disable the injection of plugin link rules to avoid cyclic
|
|
|
|
# dependencies.
|
|
|
|
if (@QT_SUPERBUILD@)
|
|
|
|
set(_build_allow_plugin_link_rules_genex "$<NOT:$<STREQUAL:$<TARGET_PROPERTY:QT_BUILD_PROJECT_NAME>,@PROJECT_NAME@>>")
|
|
|
|
else()
|
2020-01-10 09:55:45 +00:00
|
|
|
set(_build_allow_plugin_link_rules_genex 1)
|
2019-11-21 12:33:28 +00:00
|
|
|
endif()
|
|
|
|
|
2019-09-23 14:57:06 +00:00
|
|
|
# The code in here uses the properties defined in qt_import_plugins (Qt6CoreMacros.cmake)
|
2021-01-07 15:55:51 +00:00
|
|
|
foreach(target ${_qt_plugins})
|
2019-06-07 07:13:31 +00:00
|
|
|
set(_plugin_target "@INSTALL_CMAKE_NAMESPACE@::${target}")
|
2020-01-22 15:28:57 +00:00
|
|
|
set(_plugin_target_versionless "Qt::${target}")
|
2019-06-07 07:13:31 +00:00
|
|
|
get_target_property(_classname "${_plugin_target}" QT_PLUGIN_CLASS_NAME)
|
|
|
|
if(NOT _classname)
|
|
|
|
message("Warning: plugin ${_plugin_target} has no class name, skipping.")
|
|
|
|
continue()
|
|
|
|
endif()
|
|
|
|
|
2019-09-23 14:57:06 +00:00
|
|
|
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}")
|
2021-01-20 07:05:25 +00:00
|
|
|
set("QT_ALL_PLUGINS_FOUND_BY_FIND_PACKAGE_${_plugin_type}"
|
|
|
|
"${QT_ALL_PLUGINS_FOUND_BY_FIND_PACKAGE_${_plugin_type}}"
|
|
|
|
PARENT_SCOPE
|
|
|
|
)
|
2019-09-23 14:57:06 +00:00
|
|
|
|
2019-07-05 09:55:05 +00:00
|
|
|
set(_plugin_is_default "$<TARGET_PROPERTY:${_plugin_target},QT_DEFAULT_PLUGIN>")
|
2019-09-23 14:57:06 +00:00
|
|
|
|
|
|
|
# INCLUDE
|
2019-07-05 09:55:05 +00:00
|
|
|
set(_plugin_is_whitelisted "$<IN_LIST:${_plugin_target},${_manual_plugins_genex}>")
|
2020-01-22 15:28:57 +00:00
|
|
|
set(_plugin_versionless_is_whitelisted
|
|
|
|
"$<IN_LIST:${_plugin_target_versionless},${_manual_plugins_genex}>")
|
2019-06-07 07:13:31 +00:00
|
|
|
|
2019-09-23 14:57:06 +00:00
|
|
|
# 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
|
|
|
|
"$<AND:"
|
|
|
|
"$<NOT:" # EXCLUDE
|
|
|
|
"$<IN_LIST:${_plugin_target},${_no_plugins_genex}>"
|
|
|
|
">,"
|
2020-01-22 15:28:57 +00:00
|
|
|
"$<NOT:"
|
|
|
|
"$<IN_LIST:${_plugin_target_versionless},${_no_plugins_genex}>"
|
|
|
|
">,"
|
|
|
|
# Excludes both plugins targeted by EXCLUDE_BY_TYPE and not included in
|
|
|
|
# INCLUDE_BY_TYPE.
|
2019-09-23 14:57:06 +00:00
|
|
|
"$<STREQUAL:,$<GENEX_EVAL:$<TARGET_PROPERTY:QT_PLUGINS_${_plugin_type}>>>"
|
|
|
|
">"
|
|
|
|
)
|
|
|
|
|
|
|
|
# Support INCLUDE_BY_TYPE
|
|
|
|
string(CONCAT _plugin_is_in_type_whitelist
|
|
|
|
"$<IN_LIST:"
|
|
|
|
"${_plugin_target},"
|
|
|
|
"$<GENEX_EVAL:"
|
|
|
|
"$<TARGET_PROPERTY:QT_PLUGINS_${_plugin_type}>"
|
|
|
|
">"
|
|
|
|
">"
|
|
|
|
)
|
2020-01-22 15:28:57 +00:00
|
|
|
string(CONCAT _plugin_versionless_is_in_type_whitelist
|
|
|
|
"$<IN_LIST:"
|
|
|
|
"${_plugin_target_versionless},"
|
|
|
|
"$<GENEX_EVAL:"
|
|
|
|
"$<TARGET_PROPERTY:QT_PLUGINS_${_plugin_type}>"
|
|
|
|
">"
|
|
|
|
">"
|
|
|
|
)
|
2019-09-23 14:57:06 +00:00
|
|
|
|
|
|
|
# Complete condition that defines whether a static plugin is linked
|
2019-06-07 07:13:31 +00:00
|
|
|
string(CONCAT _plugin_condition
|
2019-11-21 12:33:28 +00:00
|
|
|
"$<BOOL:$<AND:"
|
2020-08-05 12:56:51 +00:00
|
|
|
"${_is_plugin_marker_genex},"
|
2019-11-21 12:33:28 +00:00
|
|
|
"${_build_allow_plugin_link_rules_genex},"
|
|
|
|
"$<OR:"
|
|
|
|
"${_plugin_is_whitelisted},"
|
2020-01-22 15:28:57 +00:00
|
|
|
"${_plugin_versionless_is_whitelisted},"
|
2019-11-21 12:33:28 +00:00
|
|
|
"${_plugin_is_in_type_whitelist},"
|
2020-01-22 15:28:57 +00:00
|
|
|
"${_plugin_versionless_is_in_type_whitelist},"
|
2019-11-21 12:33:28 +00:00
|
|
|
"$<AND:"
|
|
|
|
"${_default_plugins_are_enabled_wrapped},"
|
|
|
|
"${_plugin_is_default},"
|
|
|
|
"${_plugin_is_not_blacklisted}"
|
|
|
|
">"
|
2019-09-23 14:57:06 +00:00
|
|
|
">"
|
|
|
|
">>"
|
2019-06-07 07:13:31 +00:00
|
|
|
)
|
2019-09-23 14:57:06 +00:00
|
|
|
|
|
|
|
# If this condition is true, we link against the plug-in
|
2019-06-07 07:13:31 +00:00
|
|
|
set(_plugin_genex "$<${_plugin_condition}:${_plugin_target}>")
|
|
|
|
target_link_libraries(${_module_target} INTERFACE "${_plugin_genex}")
|
2019-09-23 14:57:06 +00:00
|
|
|
|
2019-10-08 16:13:03 +00:00
|
|
|
set(_generated_qt_plugin_file_name
|
|
|
|
"${CMAKE_CURRENT_BINARY_DIR}/qt_@QT_MODULE@_${target}.cpp")
|
|
|
|
set(_generated_qt_plugin_file_name_template "${_generated_qt_plugin_file_name}.in")
|
|
|
|
set(_generated_qt_plugin_file_content "#include <QtPlugin>\nQ_IMPORT_PLUGIN(${_classname})")
|
|
|
|
|
|
|
|
# Generate a source file to import that plug-in. Has to be done with configure_file,
|
|
|
|
# because file(GENERATE) and target_sources has issues with scopes.
|
|
|
|
file(WRITE "${_generated_qt_plugin_file_name_template}"
|
|
|
|
"${_generated_qt_plugin_file_content}")
|
|
|
|
configure_file("${_generated_qt_plugin_file_name_template}"
|
|
|
|
"${_generated_qt_plugin_file_name}")
|
|
|
|
|
|
|
|
target_sources(${_module_target} INTERFACE
|
|
|
|
"$<${_plugin_condition}:${_generated_qt_plugin_file_name}>")
|
2019-06-07 07:13:31 +00:00
|
|
|
endforeach()
|
2021-01-20 07:05:25 +00:00
|
|
|
|
|
|
|
set_target_properties(${_module_target} PROPERTIES __qt_internal_plugins_added TRUE)
|
|
|
|
endfunction()
|
|
|
|
|
|
|
|
if(NOT @BUILD_SHARED_LIBS@)
|
|
|
|
__qt_internal_add_static_plugins_once()
|
2019-06-07 07:13:31 +00:00
|
|
|
endif()
|