diff options
author | Warwick Allison <warwick.allison@nokia.com> | 2010-04-06 05:56:38 (GMT) |
---|---|---|
committer | Warwick Allison <warwick.allison@nokia.com> | 2010-04-06 05:56:38 (GMT) |
commit | 51381e1454070960bc3c1d6acdfa8e742c37620c (patch) | |
tree | db36c886a10edde3c55c4dc4d82fbf05f8beb927 /src/imports/gestures/gestures.pro | |
parent | 37e8fd4e09c1221efde3e67e6acd5cfbb35686fd (diff) | |
download | Qt-51381e1454070960bc3c1d6acdfa8e742c37620c.zip Qt-51381e1454070960bc3c1d6acdfa8e742c37620c.tar.gz Qt-51381e1454070960bc3c1d6acdfa8e742c37620c.tar.bz2 |
Labs (experimental) Gesture support.
By popular demand.
Diffstat (limited to 'src/imports/gestures/gestures.pro')
-rw-r--r-- | src/imports/gestures/gestures.pro | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/imports/gestures/gestures.pro b/src/imports/gestures/gestures.pro new file mode 100644 index 0000000..b9c5b4e --- /dev/null +++ b/src/imports/gestures/gestures.pro @@ -0,0 +1,27 @@ +TARGET = gesturesqmlplugin +TARGETPATH = Qt/labs/gestures +include(../qimportbase.pri) + +QT += declarative + +SOURCES += qdeclarativegesturearea.cpp plugin.cpp +HEADERS += qdeclarativegesturearea_p.h + +QTDIR_build:DESTDIR = $$QT_BUILD_TREE/imports/$$TARGETPATH +target.path = $$[QT_INSTALL_IMPORTS]/$$TARGETPATH + +qmldir.files += $$PWD/qmldir +qmldir.path += $$[QT_INSTALL_IMPORTS]/$$TARGETPATH + +symbian:{ + load(data_caging_paths) + include($$QT_SOURCE_TREE/demos/symbianpkgrules.pri) + + importFiles.sources = gesturesqmlplugin.dll \ + qmldir + importFiles.path = $$QT_IMPORTS_BASE_DIR/$$TARGETPATH + + DEPLOYMENT = importFiles +} + +INSTALLS += target qmldir |