equal
deleted
inserted
replaced
|
1 TEMPLATE = app |
|
2 TARGET = tst_qmessage |
|
3 |
|
4 CONFIG += testcase |
|
5 QT += testlib |
|
6 |
|
7 include(../../../common.pri) |
|
8 include(../support/support.pri) |
|
9 |
|
10 CONFIG += mobility |
|
11 MOBILITY = messaging |
|
12 INCLUDEPATH += ../../../src/messaging |
|
13 |
|
14 symbian|wince*|maemo5|win32|mac { |
|
15 } else { |
|
16 # Temporarily link against local qtopiamail lib (should be part of the platform) |
|
17 LIBS += -L $$(QMF_LIBDIR) -lqtopiamail |
|
18 } |
|
19 |
|
20 wince*|symbian*: { |
|
21 addFiles.sources = testdata/* |
|
22 addFiles.path = testdata |
|
23 DEPLOYMENT += addFiles |
|
24 } |
|
25 |
|
26 wince* { |
|
27 DEFINES += TEADATA_DIR=\\\".\\\" |
|
28 } !symbian { |
|
29 DEFINES += TESTDATA_DIR=\\\"$$PWD/\\\" |
|
30 } |
|
31 |
|
32 SOURCES += \ |
|
33 tst_qmessage.cpp |
|
34 |
|
35 symbian { |
|
36 LIBS += -limcm \ |
|
37 -lcommsdat \ |
|
38 -lmsgs |
|
39 |
|
40 TARGET.CAPABILITY = NetworkServices \ |
|
41 LocalServices \ |
|
42 ReadUserData \ |
|
43 WriteUserData \ |
|
44 UserEnvironment \ |
|
45 ReadDeviceData \ |
|
46 WriteDeviceData |
|
47 } |
|
48 |