blob: 40809bba693296d3460d6d1093fcf2e34514599a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
TEMPLATE = \
subdirs
SUBDIRS = \
imageviewer \
graphicsview \
collidingmice \
pannablewebview
contains(QT_CONFIG, webkit) {
SUBDIRS += pannablewebview
contains(QT_CONFIG, svg):SUBDIRS += browser
}
# install
target.path = $$[QT_INSTALL_EXAMPLES]/gestures
sources.files = $$SOURCES $$HEADERS $$RESOURCES $$FORMS gestures.pro README
sources.path = $$[QT_INSTALL_EXAMPLES]/gestures
INSTALLS += target sources
|