summaryrefslogtreecommitdiffstats
path: root/src/plugins
diff options
context:
space:
mode:
authorJanne Koskinen <janne.p.koskinen@qt.io>2016-11-07 15:44:49 +0200
committerYoann Lopes <yoann.lopes@qt.io>2016-11-08 10:09:33 +0000
commit3d9ef4d41718adc9a9099964eb4f964d1d3b63df (patch)
treec89124d9b5c6863b8c57bd5d8aa371af06ce597a /src/plugins
parent6ef0084be8a840b9eb24d010659b7fec91008217 (diff)
Fix plugin class name when using neutrino service
Fixes static linking issue with the plugin. Task-number: QTBUG-56966 Change-Id: Ie5803b048970a436f017251c0afd375fce11b2fb Reviewed-by: Yoann Lopes <yoann.lopes@qt.io>
Diffstat (limited to 'src/plugins')
-rw-r--r--src/plugins/qnx/qnx.pro3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugins/qnx/qnx.pro b/src/plugins/qnx/qnx.pro
index 4d76fa5f7..2ad5110d6 100644
--- a/src/plugins/qnx/qnx.pro
+++ b/src/plugins/qnx/qnx.pro
@@ -11,12 +11,13 @@ blackberry {
HEADERS += bbserviceplugin.h
SOURCES += bbserviceplugin.cpp
OTHER_FILES += blackberry_mediaservice.json
+ PLUGIN_CLASS_NAME = BbServicePlugin
} else {
HEADERS += neutrinoserviceplugin.h
SOURCES += neutrinoserviceplugin.cpp
OTHER_FILES += neutrino_mediaservice.json
+ PLUGIN_CLASS_NAME = NeutrinoServicePlugin
}
PLUGIN_TYPE = mediaservice
-PLUGIN_CLASS_NAME = BbServicePlugin
load(qt_plugin)