summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaurice Kalinowski <maurice.kalinowski@digia.com>2014-03-31 15:36:38 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-03-31 15:47:22 +0200
commit26ae5521f8230792000af8e3eea52b16c1e58fe8 (patch)
tree47e602778f0145fdb2cc85883716b35c277b845a
parentd7d70fe28bc0577aa8711d649ebfb4a351fa7b4c (diff)
downloadqttools-26ae5521f8230792000af8e3eea52b16c1e58fe8.tar.gz
Add position and sensor plugins to deployment
Those two have been missing so far from the list and got skipped, causing runtime errors. Change-Id: Ib32171ca20fe34b39aa93d53f18cb0ce0197b57c Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com>
-rw-r--r--src/windeployqt/main.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/windeployqt/main.cpp b/src/windeployqt/main.cpp
index d45ee55cc..5634ff011 100644
--- a/src/windeployqt/main.cpp
+++ b/src/windeployqt/main.cpp
@@ -579,6 +579,10 @@ static inline unsigned qtModuleForPlugin(const QString &subDirName)
return QtPrintSupportModule;
if (subDirName == QLatin1String("qmltooling"))
return QtDeclarativeModule | QtQuickModule;
+ if (subDirName == QLatin1String("position"))
+ return QtPositioningModule;
+ if (subDirName == QLatin1String("sensors") || subDirName == QLatin1String("sensorgestures"))
+ return QtSensorsModule;
return 0; // "designer"
}