|
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 DEPENDPATH += . inc src ../inc |
|
21 INCLUDEPATH += . |
|
22 INCLUDEPATH += ../inc |
|
23 INCLUDEPATH += ../../../inc |
|
24 INCLUDEPATH += ../msgaudiofetcher/inc |
|
25 INCLUDEPATH += ../unifiededitor/inc |
|
26 INCLUDEPATH += ../appengine/inc |
|
27 INCLUDEPATH += ../conversationview/inc |
|
28 INCLUDEPATH += ../unifiedviewer/inc |
|
29 INCLUDEPATH += ../../msgsettings/settingsview/inc |
|
30 INCLUDEPATH += ../../smartmessaging/ringbc/inc |
|
31 |
|
32 INCLUDEPATH += $$APP_LAYER_SYSTEMINCLUDE |
|
33 |
|
34 CONFIG += hb service |
|
35 |
|
36 QT += sql |
|
37 |
|
38 symbian { |
|
39 TARGET.UID3 = 0x2001FE79 |
|
40 TARGET.CAPABILITY = All -TCB |
|
41 TARGET.EPOCSTACKSIZE = 0x14000 |
|
42 TARGET.EPOCHEAPSIZE = 0x20000 0x1000000 |
|
43 SKINICON = qtg_large_message |
|
44 } |
|
45 |
|
46 # Platforms |
|
47 SYMBIAN_PLATFORMS = WINSCW ARMV5 |
|
48 |
|
49 # Build.inf rules |
|
50 BLD_INF_RULES.prj_exports += \ |
|
51 "$${LITERAL_HASH}include <platform_paths.hrh>" \ |
|
52 "rom/msgapp.iby CORE_APP_LAYER_IBY_EXPORT_PATH(msgapp.iby)" \ |
|
53 "rom/messaginglangaugeresources.iby LANGUAGE_APP_LAYER_IBY_EXPORT_PATH(messaginglangaugeresources.iby)" \ |
|
54 "sis/msgapp_stub.sis /epoc32/data/z/system/install/msgapp_stub.sis" \ |
|
55 "rom/messaging_uda.confml CONFML_EXPORT_PATH(messaging_uda.confml,uda_content)" \ |
|
56 "rom/messaging_uda_copy.implml CRML_EXPORT_PATH(messaging_uda_copy.implml,uda_content)" \ |
|
57 "rom/private.zip CRML_EXPORT_PATH(../content/zip/,uda_content)" \ |
|
58 "resources/xml/messaging101.docml /epoc32/data/z/resource/hb/splashml/messaging101.docml" \ |
|
59 "resources/xml/messaging101.splashml /epoc32/data/z/resource/hb/splashml/messaging101.splashml" \ |
|
60 "resources/xml/messaging101_dummy.docml /epoc32/data/z/resource/hb/splashml/messaging101_dummy.docml" \ |
|
61 "resources/xml/messaging101_dummy.splashml /epoc32/data/z/resource/hb/splashml/messaging101_dummy.splashml" |
|
62 |
|
63 # Input |
|
64 HEADERS += msgmainwindow.h \ |
|
65 msglistview.h \ |
|
66 draftslistview.h \ |
|
67 msglistviewitem.h \ |
|
68 msgutils.h \ |
|
69 msgviewmanager.h \ |
|
70 msgbaseview.h \ |
|
71 msgsendserviceinterface.h \ |
|
72 msgserviceinterface.h \ |
|
73 msgactivityhandler.h |
|
74 |
|
75 SOURCES += main.cpp \ |
|
76 msgmainwindow.cpp \ |
|
77 msglistview.cpp \ |
|
78 draftslistview.cpp \ |
|
79 msglistviewitem.cpp \ |
|
80 msgutils.cpp \ |
|
81 msgviewmanager.cpp \ |
|
82 msgsendserviceinterface.cpp \ |
|
83 msgserviceinterface.cpp \ |
|
84 msgactivityhandler.cpp |
|
85 |
|
86 RESOURCES += msgapp.qrc |
|
87 |
|
88 TRANSLATIONS = messaging.ts |
|
89 |
|
90 SERVICE.FILE = messaging_service.xml |
|
91 SERVICE.OPTIONS = embeddable |
|
92 |
|
93 # Libs |
|
94 LIBS += -lappengine \ |
|
95 -lconversationview \ |
|
96 -lcpframework \ |
|
97 -lunifiededitor \ |
|
98 -lunifiedviewer \ |
|
99 -lconvergedmessageutils \ |
|
100 -lxqservice \ |
|
101 -lxqserviceutil \ |
|
102 -lQtContacts \ |
|
103 -lsettingsview \ |
|
104 -lringbc \ |
|
105 -lunidatamodelloader \ |
|
106 -lmsgaudiofetcher |
|
107 |