equal
deleted
inserted
replaced
|
1 |
|
2 HEADERS += \ |
|
3 $$PWD/support.h \ |
|
4 $$PWD/../../../src/messaging/messagingutil_p.h |
|
5 |
|
6 SOURCES += $$PWD/../../../src/messaging/messagingutil.cpp |
|
7 |
|
8 symbian|wince*|maemo*|win32|mac { |
|
9 symbian { |
|
10 |
|
11 SOURCES += $$PWD/support_symbian.cpp |
|
12 INCLUDEPATH += $$(EPOCROOT)epoc32/include/app |
|
13 INCLUDEPATH += $$(EPOCROOT)epoc32/include/platform/app |
|
14 } |
|
15 win32 { |
|
16 SOURCES += $$PWD/support_win.cpp |
|
17 |
|
18 wince*{ |
|
19 LIBS += cemapi.lib |
|
20 } |
|
21 else { |
|
22 LIBS += mapi32.lib Advapi32.lib |
|
23 } |
|
24 } |
|
25 maemo5 { |
|
26 QT += dbus |
|
27 CONFIG += link_pkgconfig |
|
28 PKGCONFIG += glib-2.0 gconf-2.0 |
|
29 SOURCES += $$PWD/support_maemo5.cpp |
|
30 } |
|
31 mac|maemo6 { |
|
32 SOURCES += $$PWD/support_stub.cpp |
|
33 } |
|
34 } else { |
|
35 # QMF headers must be located at $QMF_INCLUDEDIR |
|
36 INCLUDEPATH += $$(QMF_INCLUDEDIR) $$(QMF_INCLUDEDIR)/support |
|
37 |
|
38 # QMF libraries must be located at $QMF_LIBDIR |
|
39 LIBS += -L $$(QMF_LIBDIR) -lqtopiamail |
|
40 |
|
41 SOURCES += $$PWD/support_qmf.cpp |
|
42 } |
|
43 |