aboutsummaryrefslogtreecommitdiffstats
path: root/plugin/plugin.pro
blob: 72c6b9610c3a893b92736c2e33303a131b5b722d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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