blob: 92700c5733a2d539a387811919559479c73b6147 (
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
|
load(qttest_p4)
SOURCES += tst_qxmlquery.cpp MessageValidator.cpp TestFundament.cpp
HEADERS += PushBaseliner.h \
MessageSilencer.h \
../qsimplexmlnodemodel/TestSimpleNodeModel.h \
MessageValidator.h \
NetworkOverrider.h
RESOURCES = input.qrc
QT += network
!wince* {
DEFINES += SRCDIR=\\\"$$PWD/\\\"
} else {
DEFINES += SRCDIR=\\\"./\\\"
}
include (../xmlpatterns.pri)
wince*|symbian*: {
addFiles.sources = pushBaselines input.xml
addFiles.path = .
patternistFiles.sources = ../xmlpatterns/queries
patternistFiles.path = ../xmlpatterns
DEPLOYMENT += addFiles patternistFiles
}
|