fecd9d90da
In particular, Qt targets extended with other qt targets (eg. Qt::VulkanSupport or Qt::LinuxAccessibilitySupport) after the first add_qt_module were not taken into account when generating Depends files. Note that this patch updates the minimum required version to CMake 3.15 Change-Id: I747deedd4d59e385876bc1a834ef9bdb6078911b Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
49 lines
1.0 KiB
CMake
49 lines
1.0 KiB
CMake
define_property(TARGET
|
|
PROPERTY
|
|
QT_PLUGINS
|
|
BRIEF_DOCS
|
|
"List of Qt plug-ins associated with a given Qt module."
|
|
FULL_DOCS
|
|
"This is a property on Qt modules.
|
|
For instance, sqlite;odbc for Sql"
|
|
)
|
|
|
|
define_property(TARGET
|
|
PROPERTY
|
|
MODULE_PLUGIN_TYPES
|
|
BRIEF_DOCS
|
|
"List of plugin categories associated to the Qt module"
|
|
FULL_DOCS
|
|
"This is a property on Qt modules.
|
|
For instance, sqldrivers for Sql."
|
|
)
|
|
|
|
define_property(TARGET
|
|
PROPERTY
|
|
QT_PLUGIN_CLASS_NAME
|
|
BRIEF_DOCS
|
|
"Class name of the Qt plug-in"
|
|
FULL_DOCS
|
|
"This is a property on Qt plug-ins.
|
|
For instance, QICOPlugin for the qico plug-in"
|
|
)
|
|
|
|
define_property(TARGET
|
|
PROPERTY
|
|
QT_MODULE
|
|
BRIEF_DOCS
|
|
"Qt module associated with a plug-in."
|
|
FULL_DOCS
|
|
"This is a property on Qt plug-ins.
|
|
For instance, Sql for qsqlite"
|
|
)
|
|
|
|
define_property(GLOBAL
|
|
PROPERTY
|
|
QT_KNOWN_PLUGINS
|
|
BRIEF_DOCS
|
|
""
|
|
FULL_DOCS
|
|
""
|
|
)
|