summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2016-09-14 09:10:29 +0200
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2016-09-14 08:13:29 +0000
commit316720b417a8360d2dfa24e9f3924fc46ef590e3 (patch)
tree3489382e287bc01eb031881fdfb2c509010c5559 /src
parent1285db5b12c6041a5d1c55d07113ce75a9d76e3a (diff)
windeployqt: Add QtSerialBus
Add library and plugin directory. Task-number: QTBUG-55977 Change-Id: I594cea7f7d18bbf6e8e0e07e1ea48b76dcbe64fc Reviewed-by: Karsten Heimrich <karsten.heimrich@qt.io>
Diffstat (limited to 'src')
-rw-r--r--src/windeployqt/main.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/windeployqt/main.cpp b/src/windeployqt/main.cpp
index 9b8262805..0ec8fd008 100644
--- a/src/windeployqt/main.cpp
+++ b/src/windeployqt/main.cpp
@@ -103,7 +103,8 @@ enum QtModule
Qt3DInputModule = 0x0000200000000000,
QtLocationModule = 0x0000400000000000,
QtWebChannelModule = 0x0000800000000000,
- QtTextToSpeechModule = 0x0001000000000000
+ QtTextToSpeechModule = 0x0001000000000000,
+ QtSerialBusModule = 0x0002000000000000
};
struct QtModuleEntry {
@@ -161,7 +162,8 @@ static QtModuleEntry qtModuleEntries[] = {
{ Qt3DInputModule, "3dinput", "Qt53DInput", 0 },
{ QtLocationModule, "geoservices", "Qt5Location", 0 },
{ QtWebChannelModule, "webchannel", "Qt5WebChannel", 0 },
- { QtTextToSpeechModule, "texttospeech", "Qt5TextToSpeech", 0 }
+ { QtTextToSpeechModule, "texttospeech", "Qt5TextToSpeech", 0 },
+ { QtSerialBusModule, "serialbus", "Qt5SerialBus", 0 }
};
static const char webKitProcessC[] = "QtWebProcess";
@@ -818,6 +820,8 @@ static inline quint64 qtModuleForPlugin(const QString &subDirName)
return Qt3DRendererModule;
if (subDirName == QLatin1String("texttospeech"))
return QtTextToSpeechModule;
+ if (subDirName == QLatin1String("canbus"))
+ return QtSerialBusModule;
return 0; // "designer"
}