aboutsummaryrefslogtreecommitdiffstats
path: root/plugin/plugin.pro
diff options
context:
space:
mode:
authorAntti Hölttä <AHoelttae@luxoft.com>2018-07-23 14:53:11 +0200
committerAntti Hölttä <AHoelttae@luxoft.com>2019-03-18 16:29:30 +0100
commitffd151ecf3971fd8601d8b1d4e2f04fb5793e364 (patch)
treecd3b947f04781d59bc61306dd34ef15f8c3a24fd /plugin/plugin.pro
Initial commit, demoable poc
Sort of working with 4 dir navigation, check demoapp
Diffstat (limited to 'plugin/plugin.pro')
-rw-r--r--plugin/plugin.pro36
1 files changed, 36 insertions, 0 deletions
diff --git a/plugin/plugin.pro b/plugin/plugin.pro
new file mode 100644
index 0000000..72c6b96
--- /dev/null
+++ b/plugin/plugin.pro
@@ -0,0 +1,36 @@
+TARGET = cursornavigationplugin
+TEMPLATE = lib
+
+QT -= gui
+QT += qml quick
+
+CONFIG += plugin
+
+DEFINES += PLUGIN_LIBRARY
+
+SOURCES += \
+ plugin.cpp \
+ cursornavigation.cpp \
+ cursornavigationattached.cpp \
+ itemregister.cpp \
+ inputadapter.cpp \
+ cursornavigationalgorithm.cpp \
+ spatialnavigation4dir.cpp \
+ inputtypes.cpp
+
+HEADERS += \
+ plugin.h \
+ cursornavigation.h \
+ cursornavigationattached.h \
+ itemregister.h \
+ inputadapter.h \
+ inputtypes.h \
+ cursornavigationalgorithm.h \
+ spatialnavigation4dir.h
+
+pluginfiles.files += qmldir
+
+target.path = $$[QT_INSTALL_QML]/CursorNavigation
+pluginfiles.path = $$[QT_INSTALL_QML]/CursorNavigation
+
+INSTALLS += target pluginfiles