From 316720b417a8360d2dfa24e9f3924fc46ef590e3 Mon Sep 17 00:00:00 2001 From: Friedemann Kleint Date: Wed, 14 Sep 2016 09:10:29 +0200 Subject: windeployqt: Add QtSerialBus Add library and plugin directory. Task-number: QTBUG-55977 Change-Id: I594cea7f7d18bbf6e8e0e07e1ea48b76dcbe64fc Reviewed-by: Karsten Heimrich --- src/windeployqt/main.cpp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'src') 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" } -- cgit v1.2.3