summaryrefslogtreecommitdiffstats
path: root/gestures.pro
blob: e5a845e50f45beb9ba5de9084ee20d3c69c7d1e0 (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
TARGET  = qmlgestureareaplugin
TARGETPATH = Qt/labs/gestures

TEMPLATE = lib
CONFIG += qt plugin
QT += declarative

SOURCES += qdeclarativegesturearea.cpp \
           qdeclarativegesturehandler.cpp \
           qdeclarativegesturerecognizers.cpp \
           plugin.cpp
HEADERS += qdeclarativegesturearea_p.h \
           gestureareaplugin_p.h \
           qdeclarativegesturehandler_p.h \
           qdeclarativegesturerecognizers_p.h

QTDIR_build:DESTDIR = $$QT_BUILD_TREE/imports/$$TARGETPATH
else:DESTDIR = .
target.path = $$[QT_INSTALL_IMPORTS]/$$TARGETPATH

qmldir.files += $$PWD/qmldir
qmldir.path +=  $$[QT_INSTALL_IMPORTS]/$$TARGETPATH

symbian:{
    TARGET.UID3 = 0x2002131F
    TARGET.EPOCALLOWDLLDATA = 1
    include($$QT_SOURCE_TREE/demos/symbianpkgrules.pri)

    importFiles.sources = $$DESTDIR/qmlgestureareaplugin$${QT_LIBINFIX}.dll qmldir
    importFiles.path = $$QT_IMPORTS_BASE_DIR/$$TARGETPATH

    DEPLOYMENT = importFiles
}

INSTALLS += target qmldir