aboutsummaryrefslogtreecommitdiffstats
path: root/plugin/plugin.pro
blob: 4d7fed998b7d053a75308fed31e2ba7ed644cc1e (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 \
    inputadapter.cpp \
    cursornavigationalgorithm.cpp \
    spatialnavigation4dir.cpp \
    inputtypes.cpp \
    spatialnavigation360.cpp

HEADERS += \
        plugin.h \
    cursornavigation.h \
    cursornavigationattached.h \
    inputadapter.h \
    inputtypes.h \
    cursornavigationalgorithm.h \
    spatialnavigation4dir.h \
    spatialnavigation360.h

pluginfiles.files += qmldir

target.path = $$[QT_INSTALL_QML]/CursorNavigation
pluginfiles.path = $$[QT_INSTALL_QML]/CursorNavigation

INSTALLS += target pluginfiles