31
|
1 |
#
|
|
2 |
# Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
|
3 |
# All rights reserved.
|
|
4 |
# This component and the accompanying materials are made available
|
|
5 |
# under the terms of "Eclipse Public License v1.0"
|
|
6 |
# which accompanies this distribution, and is available
|
|
7 |
# at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
|
8 |
#
|
|
9 |
# Initial Contributors:
|
|
10 |
# Nokia Corporation - initial contribution.
|
|
11 |
#
|
|
12 |
# Contributors:
|
|
13 |
#
|
|
14 |
# Description:
|
|
15 |
#
|
|
16 |
|
|
17 |
TEMPLATE = app
|
|
18 |
TARGET = messaging101
|
|
19 |
|
|
20 |
ICON = resources/icons/qtg_large_message.svg
|
|
21 |
|
|
22 |
DEPENDPATH += . inc src ../inc
|
|
23 |
INCLUDEPATH += .
|
|
24 |
INCLUDEPATH += ../inc
|
|
25 |
INCLUDEPATH += ../../../inc
|
|
26 |
INCLUDEPATH += ../unifiededitor/inc
|
|
27 |
INCLUDEPATH += ../appengine/inc
|
|
28 |
INCLUDEPATH += ../conversationview/inc
|
|
29 |
INCLUDEPATH += ../unifiedviewer/inc
|
|
30 |
INCLUDEPATH += ../../msgsettings/settingsview/inc
|
|
31 |
INCLUDEPATH += $$APP_LAYER_SYSTEMINCLUDE
|
|
32 |
INCLUDEPATH += /ext/mw/qtextensions/qtmobileextensions/include
|
|
33 |
INCLUDEPATH += ../../smartmessaging/ringbc/inc
|
|
34 |
|
|
35 |
CONFIG += hb service
|
|
36 |
|
|
37 |
QT += sql
|
|
38 |
|
|
39 |
TARGET.UID3 = 0x2001FE79
|
|
40 |
TARGET.CAPABILITY = All -TCB
|
|
41 |
TARGET.EPOCHEAPSIZE = 0x20000 0x1000000
|
|
42 |
|
|
43 |
# Platforms
|
|
44 |
SYMBIAN_PLATFORMS = WINSCW ARMV5
|
|
45 |
|
|
46 |
# Build.inf rules
|
|
47 |
BLD_INF_RULES.prj_exports += \
|
|
48 |
"$${LITERAL_HASH}include <platform_paths.hrh>" \
|
|
49 |
"rom/msgapp.iby CORE_APP_LAYER_IBY_EXPORT_PATH(msgapp.iby)" \
|
|
50 |
"rom/messaginglangaugeresources.iby LANGUAGE_APP_LAYER_IBY_EXPORT_PATH(messaginglangaugeresources.iby)" \
|
|
51 |
"sis/msgapp_stub.sis /epoc32/data/z/system/install/msgapp_stub.sis" \
|
|
52 |
"rom/messaging_uda.confml CONFML_EXPORT_PATH(messaging_uda.confml,uda_content)" \
|
|
53 |
"rom/messaging_uda_copy.implml CRML_EXPORT_PATH(messaging_uda_copy.implml,uda_content)" \
|
|
54 |
"rom/private.zip CRML_EXPORT_PATH(../content/zip/,uda_content)"
|
|
55 |
|
|
56 |
# Input
|
|
57 |
HEADERS += msgmainwindow.h \
|
|
58 |
msglistview.h \
|
|
59 |
draftslistview.h \
|
|
60 |
msglistviewitem.h \
|
|
61 |
msgutils.h \
|
|
62 |
msgviewmanager.h \
|
|
63 |
msgbaseview.h \
|
|
64 |
msgsendserviceinterface.h \
|
|
65 |
msgserviceinterface.h
|
|
66 |
|
|
67 |
SOURCES += main.cpp \
|
|
68 |
msgmainwindow.cpp \
|
|
69 |
msglistview.cpp \
|
|
70 |
draftslistview.cpp \
|
|
71 |
msglistviewitem.cpp \
|
|
72 |
msgutils.cpp \
|
|
73 |
msgviewmanager.cpp \
|
|
74 |
msgsendserviceinterface.cpp \
|
|
75 |
msgserviceinterface.cpp
|
|
76 |
|
|
77 |
RESOURCES += msgapp.qrc
|
|
78 |
|
|
79 |
TRANSLATIONS = messaging.ts
|
|
80 |
|
|
81 |
SERVICE.FILE = messaging_service.xml
|
|
82 |
SERVICE.OPTIONS = embeddable
|
|
83 |
|
|
84 |
# Libs
|
|
85 |
LIBS += -lappengine \
|
|
86 |
-lconversationview \
|
|
87 |
-lcpframework \
|
|
88 |
-lunifiededitor \
|
|
89 |
-lunifiedviewer \
|
|
90 |
-lconvergedmessageutils \
|
|
91 |
-lxqservice \
|
|
92 |
-lxqserviceutil \
|
|
93 |
-lQtContacts \
|
|
94 |
-lsettingsview \
|
|
95 |
-lringbc \
|
|
96 |
-lunidatamodelloader
|
|
97 |
|
|
98 |
|