2021-03-23 04:48:56 +00:00
|
|
|
# Note that these are only the keywords that are unique to qt_internal_add_plugin().
|
|
|
|
# That function also supports the keywords defined by _qt_internal_get_add_plugin_keywords().
|
|
|
|
macro(qt_internal_get_internal_add_plugin_keywords option_args single_args multi_args)
|
|
|
|
set(${option_args}
|
|
|
|
EXCEPTIONS
|
|
|
|
ALLOW_UNDEFINED_SYMBOLS
|
|
|
|
SKIP_INSTALL
|
|
|
|
)
|
|
|
|
set(${single_args}
|
|
|
|
OUTPUT_DIRECTORY
|
|
|
|
INSTALL_DIRECTORY
|
|
|
|
ARCHIVE_INSTALL_DIRECTORY
|
|
|
|
${__default_target_info_args}
|
|
|
|
)
|
|
|
|
set(${multi_args}
|
|
|
|
${__default_private_args}
|
|
|
|
${__default_public_args}
|
|
|
|
DEFAULT_IF
|
|
|
|
)
|
|
|
|
endmacro()
|
|
|
|
|
2020-08-13 15:37:47 +00:00
|
|
|
# This is the main entry point for defining Qt plugins.
|
|
|
|
# A CMake target is created with the given target. The TYPE parameter is needed to place the
|
|
|
|
# plugin into the correct plugins/ sub-directory.
|
|
|
|
function(qt_internal_add_plugin target)
|
|
|
|
qt_internal_module_info(module "${target}")
|
|
|
|
|
|
|
|
qt_internal_set_qt_known_plugins("${QT_KNOWN_PLUGINS}" "${target}")
|
|
|
|
|
2021-03-23 04:48:56 +00:00
|
|
|
_qt_internal_get_add_plugin_keywords(
|
|
|
|
public_option_args
|
|
|
|
public_single_args
|
|
|
|
public_multi_args
|
|
|
|
)
|
|
|
|
qt_internal_get_internal_add_plugin_keywords(
|
|
|
|
internal_option_args
|
|
|
|
internal_single_args
|
|
|
|
internal_multi_args
|
|
|
|
)
|
|
|
|
set(option_args ${public_option_args} ${internal_option_args})
|
|
|
|
set(single_args ${public_single_args} ${internal_single_args})
|
|
|
|
set(multi_args ${public_multi_args} ${internal_multi_args})
|
|
|
|
|
2020-08-13 15:37:47 +00:00
|
|
|
qt_parse_all_arguments(arg "qt_internal_add_plugin"
|
2021-03-23 04:48:56 +00:00
|
|
|
"${option_args}"
|
|
|
|
"${single_args}"
|
|
|
|
"${multi_args}"
|
2020-08-13 15:37:47 +00:00
|
|
|
"${ARGN}"
|
|
|
|
)
|
|
|
|
|
2021-02-10 01:11:39 +00:00
|
|
|
# Put this behind a cache option for now. It's too noisy for general use
|
|
|
|
# until most repos are updated.
|
|
|
|
option(QT_WARN_PLUGIN_PUBLIC_KEYWORDS "Warn if a plugin specifies a PUBLIC keyword")
|
|
|
|
if(QT_WARN_PLUGIN_PUBLIC_KEYWORDS)
|
|
|
|
foreach(publicKeyword IN LISTS __default_public_args)
|
|
|
|
if(NOT "${arg_${publicKeyword}}" STREQUAL "")
|
|
|
|
string(REPLACE "PUBLIC_" "" privateKeyword "${publicKeyword}")
|
|
|
|
message(AUTHOR_WARNING
|
|
|
|
"Plugins are not intended to be linked to. "
|
|
|
|
"They should not have any public properties, but ${target} "
|
|
|
|
"sets ${publicKeyword} to the following value:\n"
|
|
|
|
" ${arg_${publicKeyword}}\n"
|
|
|
|
"Update your project to use ${privateKeyword} instead.\n")
|
|
|
|
endif()
|
|
|
|
endforeach()
|
|
|
|
endif()
|
|
|
|
|
2021-03-23 04:48:56 +00:00
|
|
|
qt_remove_args(plugin_args
|
|
|
|
ARGS_TO_REMOVE
|
|
|
|
${internal_option_args}
|
|
|
|
${internal_single_args}
|
|
|
|
${internal_multi_args}
|
|
|
|
ALL_ARGS
|
|
|
|
${option_args}
|
|
|
|
${single_args}
|
|
|
|
${multi_args}
|
|
|
|
ARGS
|
|
|
|
${ARGN}
|
|
|
|
)
|
|
|
|
qt6_add_plugin(${target} ${plugin_args})
|
|
|
|
|
2020-08-13 15:37:47 +00:00
|
|
|
qt_get_sanitized_plugin_type("${arg_TYPE}" plugin_type_escaped)
|
|
|
|
|
|
|
|
set(output_directory_default "${QT_BUILD_DIR}/${INSTALL_PLUGINSDIR}/${arg_TYPE}")
|
|
|
|
set(install_directory_default "${INSTALL_PLUGINSDIR}/${arg_TYPE}")
|
|
|
|
|
|
|
|
qt_internal_check_directory_or_type(OUTPUT_DIRECTORY "${arg_OUTPUT_DIRECTORY}" "${arg_TYPE}"
|
|
|
|
"${output_directory_default}" output_directory)
|
|
|
|
if (NOT arg_SKIP_INSTALL)
|
|
|
|
qt_internal_check_directory_or_type(INSTALL_DIRECTORY "${arg_INSTALL_DIRECTORY}" "${arg_TYPE}"
|
|
|
|
"${install_directory_default}" install_directory)
|
|
|
|
set(archive_install_directory ${arg_ARCHIVE_INSTALL_DIRECTORY})
|
|
|
|
if (NOT archive_install_directory AND install_directory)
|
|
|
|
set(archive_install_directory "${install_directory}")
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
qt_set_common_target_properties(${target})
|
|
|
|
qt_set_target_info_properties(${target} ${ARGN} TARGET_VERSION "${arg_VERSION}")
|
|
|
|
|
2021-03-23 04:48:56 +00:00
|
|
|
# Override the OUTPUT_NAME that qt6_add_plugin() set, we need to account for
|
|
|
|
# QT_LIBINFIX, which is specific to building Qt.
|
2020-08-13 15:37:47 +00:00
|
|
|
# Make sure the Qt6 plugin library names are like they were in Qt5 qmake land.
|
|
|
|
# Whereas the Qt6 CMake target names are like the Qt5 CMake target names.
|
2021-03-23 04:48:56 +00:00
|
|
|
get_target_property(output_name ${target} OUTPUT_NAME)
|
2020-09-21 13:45:28 +00:00
|
|
|
set_property(TARGET "${target}" PROPERTY OUTPUT_NAME "${output_name}${QT_LIBINFIX}")
|
2020-08-13 15:37:47 +00:00
|
|
|
|
|
|
|
# Add a custom target with the Qt5 qmake name for a more user friendly ninja experience.
|
|
|
|
if(arg_OUTPUT_NAME AND NOT TARGET "${output_name}")
|
2021-03-11 10:19:48 +00:00
|
|
|
# But don't create such a target if it would just differ in case from "${target}"
|
|
|
|
# and we're not using Ninja. See https://gitlab.kitware.com/cmake/cmake/-/issues/21915
|
|
|
|
string(TOUPPER "${output_name}" uc_output_name)
|
|
|
|
string(TOUPPER "${target}" uc_target)
|
|
|
|
if(NOT uc_output_name STREQUAL uc_target OR CMAKE_GENERATOR MATCHES "^Ninja")
|
|
|
|
add_custom_target("${output_name}")
|
|
|
|
add_dependencies("${output_name}" "${target}")
|
|
|
|
endif()
|
2020-08-13 15:37:47 +00:00
|
|
|
endif()
|
|
|
|
|
|
|
|
qt_internal_add_target_aliases("${target}")
|
|
|
|
qt_skip_warnings_are_errors_when_repo_unclean("${target}")
|
|
|
|
_qt_internal_apply_strict_cpp("${target}")
|
|
|
|
|
|
|
|
# Disable linking of plugins against other plugins during static regular and
|
|
|
|
# super builds. The latter causes cyclic dependencies otherwise.
|
2020-11-30 18:28:00 +00:00
|
|
|
_qt_internal_disable_static_default_plugins("${target}")
|
2020-08-13 15:37:47 +00:00
|
|
|
|
|
|
|
set_target_properties("${target}" PROPERTIES
|
|
|
|
LIBRARY_OUTPUT_DIRECTORY "${output_directory}"
|
|
|
|
RUNTIME_OUTPUT_DIRECTORY "${output_directory}"
|
|
|
|
ARCHIVE_OUTPUT_DIRECTORY "${output_directory}"
|
|
|
|
QT_PLUGIN_TYPE "${plugin_type_escaped}"
|
|
|
|
# Save the non-sanitized plugin type values for qmake consumption via .pri files.
|
|
|
|
QT_QMAKE_PLUGIN_TYPE "${arg_TYPE}"
|
2021-03-23 04:48:56 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
qt_handle_multi_config_output_dirs("${target}")
|
2020-08-13 15:37:47 +00:00
|
|
|
|
|
|
|
qt_internal_library_deprecation_level(deprecation_define)
|
|
|
|
|
|
|
|
qt_autogen_tools_initial_setup(${target})
|
|
|
|
|
2021-03-23 04:48:56 +00:00
|
|
|
unset(plugin_install_package_suffix)
|
2020-08-13 15:37:47 +00:00
|
|
|
|
2021-03-23 04:48:56 +00:00
|
|
|
# Save the Qt module in the plug-in's properties and vice versa
|
2020-08-13 15:37:47 +00:00
|
|
|
if(NOT plugin_type_escaped STREQUAL "qml_plugin")
|
2021-03-01 06:17:54 +00:00
|
|
|
qt_internal_get_module_for_plugin("${target}" "${plugin_type_escaped}" qt_module)
|
2021-03-30 07:27:04 +00:00
|
|
|
|
|
|
|
set(qt_module_target "${QT_CMAKE_EXPORT_NAMESPACE}::${qt_module}")
|
|
|
|
if(NOT TARGET "${qt_module_target}")
|
|
|
|
message(FATAL_ERROR "Failed to associate Qt plugin with Qt module. ${qt_module_target} is not a known CMake target")
|
2021-03-23 04:48:56 +00:00
|
|
|
endif()
|
2021-03-30 07:27:04 +00:00
|
|
|
|
2021-03-01 06:17:54 +00:00
|
|
|
set_target_properties("${target}" PROPERTIES QT_MODULE "${qt_module}")
|
2020-08-13 15:37:47 +00:00
|
|
|
set(plugin_install_package_suffix "${qt_module}")
|
|
|
|
|
2021-03-30 07:27:04 +00:00
|
|
|
|
|
|
|
get_target_property(aliased_target ${qt_module_target} ALIASED_TARGET)
|
|
|
|
if(aliased_target)
|
|
|
|
set(qt_module_target ${aliased_target})
|
|
|
|
endif()
|
|
|
|
get_target_property(is_imported_qt_module ${qt_module_target} IMPORTED)
|
|
|
|
|
|
|
|
if(NOT is_imported_qt_module)
|
|
|
|
set_property(TARGET "${qt_module_target}" APPEND PROPERTY QT_PLUGINS "${target}")
|
|
|
|
get_target_property(module_source_dir ${qt_module_target} SOURCE_DIR)
|
|
|
|
get_directory_property(module_project_name
|
|
|
|
DIRECTORY ${module_source_dir}
|
|
|
|
DEFINITION PROJECT_NAME
|
|
|
|
)
|
|
|
|
if(module_project_name STREQUAL PROJECT_NAME)
|
2021-03-31 02:56:51 +00:00
|
|
|
set_property(TARGET ${qt_module_target} APPEND PROPERTY _qt_repo_plugins "${target}")
|
|
|
|
set_property(TARGET ${qt_module_target} APPEND PROPERTY _qt_repo_plugin_class_names
|
2021-03-30 07:27:04 +00:00
|
|
|
"$<TARGET_PROPERTY:${target},QT_PLUGIN_CLASS_NAME>"
|
2021-03-19 09:04:23 +00:00
|
|
|
)
|
2021-03-30 07:27:04 +00:00
|
|
|
endif()
|
|
|
|
else()
|
|
|
|
# TODO: If a repo A provides an internal executable E and a plugin P, with the plugin
|
|
|
|
# type belonging to a Qt module defined in a different repo, and executable E needs to
|
|
|
|
# link to plugin P in a static build, currently that won't happen. The executable E
|
2021-03-31 02:56:51 +00:00
|
|
|
# will link to plugins mentioned in the Qt module's _qt_repo_plugins property, but that
|
2021-03-30 07:27:04 +00:00
|
|
|
# property will not list P because the Qt module will be an imported target and won't
|
|
|
|
# have a SOURCE_DIR or PROJECT NAME, so the checks above will not be met.
|
|
|
|
# Figure out how to handle such a scenario.
|
2021-03-19 09:04:23 +00:00
|
|
|
endif()
|
2020-08-13 15:37:47 +00:00
|
|
|
endif()
|
|
|
|
|
|
|
|
# Change the configuration file install location for qml plugins into the Qml package location.
|
|
|
|
if(plugin_type_escaped STREQUAL "qml_plugin" AND TARGET "${INSTALL_CMAKE_NAMESPACE}::Qml")
|
|
|
|
set(plugin_install_package_suffix "Qml/QmlPlugins")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
# Save the install package suffix as a property, so that the Dependencies file is placed
|
2021-03-23 04:48:56 +00:00
|
|
|
# in the correct location.
|
2020-08-13 15:37:47 +00:00
|
|
|
if(plugin_install_package_suffix)
|
|
|
|
set_target_properties("${target}" PROPERTIES
|
|
|
|
_qt_plugin_install_package_suffix "${plugin_install_package_suffix}")
|
|
|
|
endif()
|
|
|
|
|
2020-11-06 16:18:18 +00:00
|
|
|
# The generic plugins should be enabled by default.
|
2020-10-26 10:24:27 +00:00
|
|
|
# But platform plugins should always be disabled by default, and only one is enabled
|
|
|
|
# based on the platform (condition specified in arg_DEFAULT_IF).
|
2020-11-06 16:18:18 +00:00
|
|
|
if(plugin_type_escaped STREQUAL "platforms")
|
2020-10-26 10:24:27 +00:00
|
|
|
set(_default_plugin 0)
|
|
|
|
else()
|
|
|
|
set(_default_plugin 1)
|
|
|
|
endif()
|
|
|
|
|
2020-08-13 15:37:47 +00:00
|
|
|
if (DEFINED arg_DEFAULT_IF)
|
|
|
|
if (NOT ${arg_DEFAULT_IF})
|
|
|
|
set(_default_plugin 0)
|
2020-10-26 10:24:27 +00:00
|
|
|
else()
|
|
|
|
set(_default_plugin 1)
|
2020-08-13 15:37:47 +00:00
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2020-10-19 17:34:53 +00:00
|
|
|
add_dependencies(qt_plugins "${target}")
|
|
|
|
if(arg_TYPE STREQUAL "platforms")
|
|
|
|
add_dependencies(qpa_plugins "${target}")
|
2020-10-26 10:24:27 +00:00
|
|
|
|
|
|
|
if(_default_plugin)
|
|
|
|
add_dependencies(qpa_default_plugins "${target}")
|
|
|
|
endif()
|
2020-10-19 17:34:53 +00:00
|
|
|
endif()
|
|
|
|
|
2020-08-13 15:37:47 +00:00
|
|
|
set_property(TARGET "${target}" PROPERTY QT_DEFAULT_PLUGIN "${_default_plugin}")
|
|
|
|
set_property(TARGET "${target}" APPEND PROPERTY EXPORT_PROPERTIES "QT_PLUGIN_CLASS_NAME;QT_PLUGIN_TYPE;QT_MODULE;QT_DEFAULT_PLUGIN")
|
|
|
|
|
|
|
|
set(private_includes
|
|
|
|
"${CMAKE_CURRENT_SOURCE_DIR}"
|
|
|
|
"${CMAKE_CURRENT_BINARY_DIR}"
|
|
|
|
# For the syncqt headers
|
|
|
|
"$<BUILD_INTERFACE:${module_repo_include_dir}>"
|
|
|
|
${arg_INCLUDE_DIRECTORIES}
|
|
|
|
)
|
|
|
|
|
|
|
|
set(public_includes
|
|
|
|
${arg_PUBLIC_INCLUDE_DIRECTORIES}
|
|
|
|
)
|
|
|
|
|
2020-09-22 08:02:27 +00:00
|
|
|
qt_internal_extend_target("${target}"
|
2020-08-13 15:37:47 +00:00
|
|
|
SOURCES ${arg_SOURCES}
|
|
|
|
INCLUDE_DIRECTORIES
|
|
|
|
${private_includes}
|
|
|
|
PUBLIC_INCLUDE_DIRECTORIES
|
|
|
|
${public_includes}
|
|
|
|
LIBRARIES ${arg_LIBRARIES} Qt::PlatformPluginInternal
|
|
|
|
PUBLIC_LIBRARIES ${arg_PUBLIC_LIBRARIES}
|
|
|
|
DEFINES
|
|
|
|
${arg_DEFINES}
|
2020-10-19 17:34:17 +00:00
|
|
|
${deprecation_define}
|
2020-08-13 15:37:47 +00:00
|
|
|
PUBLIC_DEFINES
|
|
|
|
${arg_PUBLIC_DEFINES}
|
|
|
|
FEATURE_DEPENDENCIES ${arg_FEATURE_DEPENDENCIES}
|
|
|
|
DBUS_ADAPTOR_SOURCES "${arg_DBUS_ADAPTOR_SOURCES}"
|
|
|
|
DBUS_ADAPTOR_FLAGS "${arg_DBUS_ADAPTOR_FLAGS}"
|
|
|
|
DBUS_INTERFACE_SOURCES "${arg_DBUS_INTERFACE_SOURCES}"
|
|
|
|
DBUS_INTERFACE_FLAGS "${arg_DBUS_INTERFACE_FLAGS}"
|
|
|
|
COMPILE_OPTIONS ${arg_COMPILE_OPTIONS}
|
|
|
|
PUBLIC_COMPILE_OPTIONS ${arg_PUBLIC_COMPILE_OPTIONS}
|
|
|
|
LINK_OPTIONS ${arg_LINK_OPTIONS}
|
|
|
|
PUBLIC_LINK_OPTIONS ${arg_PUBLIC_LINK_OPTIONS}
|
|
|
|
MOC_OPTIONS ${arg_MOC_OPTIONS}
|
|
|
|
ENABLE_AUTOGEN_TOOLS ${arg_ENABLE_AUTOGEN_TOOLS}
|
|
|
|
DISABLE_AUTOGEN_TOOLS ${arg_DISABLE_AUTOGEN_TOOLS}
|
|
|
|
)
|
2021-01-21 10:17:58 +00:00
|
|
|
|
|
|
|
qt_internal_set_exceptions_flags("${target}" ${arg_EXCEPTIONS})
|
2020-08-13 15:37:47 +00:00
|
|
|
|
|
|
|
|
|
|
|
set(qt_libs_private "")
|
|
|
|
qt_internal_get_qt_all_known_modules(known_modules)
|
|
|
|
foreach(it ${known_modules})
|
|
|
|
list(FIND arg_LIBRARIES "Qt::${it}Private" pos)
|
|
|
|
if(pos GREATER -1)
|
|
|
|
list(APPEND qt_libs_private "Qt::${it}Private")
|
|
|
|
endif()
|
|
|
|
endforeach()
|
|
|
|
|
|
|
|
qt_register_target_dependencies("${target}" "${arg_PUBLIC_LIBRARIES}" "${qt_libs_private}")
|
2020-11-19 14:35:28 +00:00
|
|
|
if (NOT BUILD_SHARED_LIBS)
|
|
|
|
qt_generate_plugin_pri_file("${target}" pri_file)
|
|
|
|
endif()
|
2020-08-13 15:37:47 +00:00
|
|
|
|
|
|
|
if (NOT arg_SKIP_INSTALL)
|
|
|
|
# Handle creation of cmake files for consumers of find_package().
|
|
|
|
# If we are part of a Qt module, the plugin cmake files are installed as part of that
|
|
|
|
# module.
|
|
|
|
# For qml plugins, they are all installed into the QtQml package location for automatic
|
|
|
|
# discovery.
|
|
|
|
if(plugin_install_package_suffix)
|
|
|
|
set(path_suffix "${INSTALL_CMAKE_NAMESPACE}${plugin_install_package_suffix}")
|
|
|
|
else()
|
|
|
|
set(path_suffix "${INSTALL_CMAKE_NAMESPACE}${target}")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
qt_path_join(config_build_dir ${QT_CONFIG_BUILD_DIR} ${path_suffix})
|
|
|
|
qt_path_join(config_install_dir ${QT_CONFIG_INSTALL_DIR} ${path_suffix})
|
|
|
|
|
2020-09-22 20:16:20 +00:00
|
|
|
qt_internal_export_additional_targets_file(
|
|
|
|
TARGETS ${target}
|
|
|
|
EXPORT_NAME_PREFIX ${INSTALL_CMAKE_NAMESPACE}${target}
|
|
|
|
CONFIG_INSTALL_DIR "${config_install_dir}")
|
2020-11-30 07:46:49 +00:00
|
|
|
|
|
|
|
qt_internal_get_min_new_policy_cmake_version(min_new_policy_version)
|
|
|
|
qt_internal_get_max_new_policy_cmake_version(max_new_policy_version)
|
2020-08-13 15:37:47 +00:00
|
|
|
configure_package_config_file(
|
|
|
|
"${QT_CMAKE_DIR}/QtPluginConfig.cmake.in"
|
|
|
|
"${config_build_dir}/${INSTALL_CMAKE_NAMESPACE}${target}Config.cmake"
|
|
|
|
INSTALL_DESTINATION "${config_install_dir}"
|
|
|
|
)
|
|
|
|
write_basic_package_version_file(
|
|
|
|
"${config_build_dir}/${INSTALL_CMAKE_NAMESPACE}${target}ConfigVersion.cmake"
|
|
|
|
VERSION ${PROJECT_VERSION}
|
|
|
|
COMPATIBILITY AnyNewerVersion
|
|
|
|
)
|
|
|
|
|
|
|
|
qt_install(FILES
|
|
|
|
"${config_build_dir}/${INSTALL_CMAKE_NAMESPACE}${target}Config.cmake"
|
|
|
|
"${config_build_dir}/${INSTALL_CMAKE_NAMESPACE}${target}ConfigVersion.cmake"
|
|
|
|
DESTINATION "${config_install_dir}"
|
|
|
|
COMPONENT Devel
|
|
|
|
)
|
2020-11-19 14:35:28 +00:00
|
|
|
if(pri_file)
|
|
|
|
qt_install(FILES "${pri_file}" DESTINATION "${INSTALL_MKSPECSDIR}/modules")
|
|
|
|
endif()
|
2020-08-13 15:37:47 +00:00
|
|
|
|
|
|
|
# Make the export name of plugins be consistent with modules, so that
|
|
|
|
# qt_add_resource adds its additional targets to the same export set in a static Qt build.
|
|
|
|
set(export_name "${INSTALL_CMAKE_NAMESPACE}${target}Targets")
|
|
|
|
qt_install(TARGETS "${target}"
|
|
|
|
EXPORT ${export_name}
|
|
|
|
RUNTIME DESTINATION "${install_directory}"
|
|
|
|
LIBRARY DESTINATION "${install_directory}"
|
|
|
|
ARCHIVE DESTINATION "${archive_install_directory}"
|
|
|
|
)
|
|
|
|
qt_install(EXPORT ${export_name}
|
|
|
|
NAMESPACE ${QT_CMAKE_EXPORT_NAMESPACE}::
|
|
|
|
DESTINATION "${config_install_dir}"
|
|
|
|
)
|
|
|
|
qt_apply_rpaths(TARGET "${target}" INSTALL_PATH "${install_directory}" RELATIVE_RPATH)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if (NOT arg_ALLOW_UNDEFINED_SYMBOLS)
|
|
|
|
### fixme: cmake is missing a built-in variable for this. We want to apply it only to
|
|
|
|
# modules and plugins that belong to Qt.
|
|
|
|
qt_internal_add_link_flags_no_undefined("${target}")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
qt_internal_add_linker_version_script(${target})
|
2021-03-26 14:52:43 +00:00
|
|
|
set(finalizer_extra_args "")
|
|
|
|
if(NOT arg_SKIP_INSTALL)
|
|
|
|
list(APPEND finalizer_extra_args INSTALL_PATH "${install_directory}")
|
|
|
|
endif()
|
|
|
|
qt_add_list_file_finalizer(qt_finalize_plugin ${target} ${finalizer_extra_args})
|
2020-11-02 11:40:57 +00:00
|
|
|
|
2021-03-26 14:52:43 +00:00
|
|
|
if(NOT arg_SKIP_INSTALL)
|
|
|
|
qt_enable_separate_debug_info(${target} "${install_directory}")
|
|
|
|
qt_internal_install_pdb_files(${target} "${install_directory}")
|
|
|
|
endif()
|
2020-08-13 15:37:47 +00:00
|
|
|
endfunction()
|
|
|
|
|
2021-03-26 14:52:43 +00:00
|
|
|
function(qt_finalize_plugin target)
|
|
|
|
cmake_parse_arguments(arg "" "INSTALL_PATH" "" ${ARGN})
|
2020-11-05 11:20:35 +00:00
|
|
|
if(WIN32 AND BUILD_SHARED_LIBS)
|
|
|
|
_qt_internal_generate_win32_rc_file("${target}")
|
|
|
|
endif()
|
|
|
|
|
2020-08-13 15:37:47 +00:00
|
|
|
# Generate .prl files for plugins of static Qt builds.
|
|
|
|
if(NOT BUILD_SHARED_LIBS)
|
2021-03-26 14:52:43 +00:00
|
|
|
if(arg_INSTALL_PATH)
|
|
|
|
qt_generate_prl_file(${target} "${arg_INSTALL_PATH}")
|
|
|
|
endif()
|
2020-08-13 15:37:47 +00:00
|
|
|
endif()
|
|
|
|
endfunction()
|
|
|
|
|
|
|
|
function(qt_get_sanitized_plugin_type plugin_type out_var)
|
|
|
|
# Used to handle some edge cases such as platforms/darwin
|
|
|
|
string(REGEX REPLACE "[-/]" "_" plugin_type "${plugin_type}")
|
|
|
|
set("${out_var}" "${plugin_type}" PARENT_SCOPE)
|
|
|
|
endfunction()
|
|
|
|
|
|
|
|
# Utility function to find the module to which a plug-in belongs.
|
2021-03-01 06:17:54 +00:00
|
|
|
function(qt_internal_get_module_for_plugin target target_type out_var)
|
2020-08-13 15:37:47 +00:00
|
|
|
qt_internal_get_qt_all_known_modules(known_modules)
|
|
|
|
|
|
|
|
qt_get_sanitized_plugin_type("${target_type}" target_type)
|
|
|
|
foreach(qt_module ${known_modules})
|
|
|
|
get_target_property(module_type "${QT_CMAKE_EXPORT_NAMESPACE}::${qt_module}" TYPE)
|
|
|
|
# Assuming interface libraries can't have plugins. Otherwise we'll need to fix the property
|
|
|
|
# name, because the current one would be invalid for interface libraries.
|
|
|
|
if(module_type STREQUAL "INTERFACE_LIBRARY")
|
|
|
|
continue()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
get_target_property(plugin_types
|
|
|
|
"${QT_CMAKE_EXPORT_NAMESPACE}::${qt_module}"
|
|
|
|
MODULE_PLUGIN_TYPES)
|
2021-03-01 06:17:54 +00:00
|
|
|
if(plugin_types AND target_type IN_LIST plugin_types)
|
|
|
|
set("${out_var}" "${qt_module}" PARENT_SCOPE)
|
|
|
|
return()
|
2020-08-13 15:37:47 +00:00
|
|
|
endif()
|
|
|
|
endforeach()
|
2021-03-01 06:17:54 +00:00
|
|
|
message(FATAL_ERROR "The plug-in '${target}' does not belong to any Qt module.")
|
2020-08-13 15:37:47 +00:00
|
|
|
endfunction()
|