summaryrefslogtreecommitdiffstats
path: root/src/tools/macdeployqt/shared/shared.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/macdeployqt/shared/shared.cpp')
-rw-r--r--src/tools/macdeployqt/shared/shared.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/tools/macdeployqt/shared/shared.cpp b/src/tools/macdeployqt/shared/shared.cpp
index 6ff269b36df..2ed050cd11a 100644
--- a/src/tools/macdeployqt/shared/shared.cpp
+++ b/src/tools/macdeployqt/shared/shared.cpp
@@ -1170,13 +1170,15 @@ void deployPlugins(const ApplicationBundleInfo &appBundleInfo, const QString &pl
});
}
+ // FIXME: Parse modules/Foo.json's plugin_types instead
static const std::map<QString, std::vector<QString>> map {
{QStringLiteral("Multimedia"), {QStringLiteral("multimedia")}},
{QStringLiteral("3DRender"), {QStringLiteral("sceneparsers"), QStringLiteral("geometryloaders"), QStringLiteral("renderers")}},
{QStringLiteral("3DQuickRender"), {QStringLiteral("renderplugins")}},
{QStringLiteral("Positioning"), {QStringLiteral("position")}},
{QStringLiteral("Location"), {QStringLiteral("geoservices")}},
- {QStringLiteral("TextToSpeech"), {QStringLiteral("texttospeech")}}
+ {QStringLiteral("TextToSpeech"), {QStringLiteral("texttospeech")}},
+ {QStringLiteral("SerialBus"), {QStringLiteral("canbus")}},
};
for (const auto &it : map) {