blob: d5b349843dc9f77077d46e5548659ff784788f14 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
TEMPLATE = subdirs
SUBDIRS = recipes \
trafficinfo \
xquery \
filetree \
schema
# This example depends on QtWebkit as well.
contains(QT_CONFIG, webkit):SUBDIRS += qobjectxmlmodel
# install
target.path = $$[QT_INSTALL_EXAMPLES]/xmlpatterns
sources.files = $$SOURCES $$HEADERS $$RESOURCES $$FORMS xmlpatterns.pro README
sources.path = $$[QT_INSTALL_EXAMPLES]/xmlpatterns
INSTALLS += target sources
include($$QT_SOURCE_TREE/examples/examplebase.pri)
|