diff --git a/src/corelib/Qt6CoreMacros.cmake b/src/corelib/Qt6CoreMacros.cmake index 390ff27e1c..acfd196417 100644 --- a/src/corelib/Qt6CoreMacros.cmake +++ b/src/corelib/Qt6CoreMacros.cmake @@ -834,25 +834,6 @@ function(_qt_internal_disable_static_default_plugins target) set_target_properties(${target} PROPERTIES QT_DEFAULT_PLUGINS 0) endfunction() -# This function is used to indicate which plug-ins are going to be -# used by a given target. -# This allows static linking to a correct set of plugins. -# Options : -# NO_DEFAULT: disable linking against any plug-in by default for that target, e.g. no platform plug-in. -# INCLUDE -# EXCLUDE -# INCLUDE_BY_TYPE -# EXCLUDE_BY_TYPE -# -# Example : -# qt_import_plugins(myapp -# INCLUDE Qt::QCocoaIntegrationPlugin -# EXCLUDE Qt::QMinimalIntegrationPlugin -# INCLUDE_BY_TYPE imageformats Qt::QGifPlugin Qt::QJpegPlugin -# EXCLUDE_BY_TYPE sqldrivers -# ) - -# TODO : support qml plug-ins. function(qt6_import_plugins target) cmake_parse_arguments(arg "NO_DEFAULT" "" "INCLUDE;EXCLUDE;INCLUDE_BY_TYPE;EXCLUDE_BY_TYPE" ${ARGN}) diff --git a/src/corelib/doc/src/cmake/qt_import_plugins.qdoc b/src/corelib/doc/src/cmake/qt_import_plugins.qdoc index c9678f9c11..cf0af9729c 100644 --- a/src/corelib/doc/src/cmake/qt_import_plugins.qdoc +++ b/src/corelib/doc/src/cmake/qt_import_plugins.qdoc @@ -94,4 +94,6 @@ In the snippet above, the following occurs with the executable \c myapp: overridden to only include Qt6::QGifPlugin and Qt6::QJpegPlugin. \li All \c sqldrivers plugins are excluded from automatic importing. \endlist + +\sa{qt6_import_qml_plugins}{qt_import_qml_plugins()} */