summaryrefslogtreecommitdiffstats
path: root/examples/sensors/grue/import/main.cpp
diff options
context:
space:
mode:
authorLincoln Ramsay <lincoln.ramsay@nokia.com>2012-04-13 16:23:26 +1000
committerQt by Nokia <qt-info@nokia.com>2012-04-16 07:49:11 +0200
commit8a36fce9f7f2db716327a611682a41c96e6d8472 (patch)
tree4fd3e22e13c94afbcb9c45121887531024e6ea88 /examples/sensors/grue/import/main.cpp
parentcf9442c184f1cd4b3e8baba517fc757085cd5ea5 (diff)
Package the grue sensor example into a self-contained bundle.
Cleaner for deployment (no need to write to inaccessible system locations) though it uses a bit of a hack to get QtSensors to find the backend plugin. Change-Id: Ibfa765d928a2d57429832c68594bcbe38f9d6a6e Reviewed-by: Zsolt Simon <zsolt.simon@nokia.com>
Diffstat (limited to 'examples/sensors/grue/import/main.cpp')
-rw-r--r--examples/sensors/grue/import/main.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/examples/sensors/grue/import/main.cpp b/examples/sensors/grue/import/main.cpp
index 4924bde7..2e8583ec 100644
--- a/examples/sensors/grue/import/main.cpp
+++ b/examples/sensors/grue/import/main.cpp
@@ -43,6 +43,13 @@
#include <gruesensor.h>
+#ifdef BUNDLED_PLUGIN
+#include <QFile>
+#include <QCoreApplication>
+#include <QQmlEngine>
+#include <QStringList>
+#endif
+
QT_BEGIN_NAMESPACE
class GrueSensorQmlImport : public QQmlExtensionPlugin
@@ -50,6 +57,13 @@ class GrueSensorQmlImport : public QQmlExtensionPlugin
Q_OBJECT
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QQmlExtensionInterface" FILE "plugin.json")
public:
+#ifdef BUNDLED_PLUGIN
+ GrueSensorQmlImport()
+ {
+ QCoreApplication::addLibraryPath(QString::fromLocal8Bit(BUNDLED_PLUGIN));
+ }
+#endif
+
virtual void registerTypes(const char *uri)
{
char const * const package = "Grue";