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 = lib |
|
18 TARGET = $$qtLibraryTarget(univcaldataplugin) |
|
19 |
|
20 TARGET.CAPABILITY = All -TCB |
|
21 TARGET.EPOCALLOWDLLDATA = 1 |
|
22 |
|
23 #UID 3 |
|
24 TARGET.UID3 = 0x2001FE61 |
|
25 |
|
26 DEPENDPATH += . inc src |
|
27 INCLUDEPATH += ./inc |
|
28 INCLUDEPATH += ../../../msgutils/s60qconversions/inc |
|
29 INCLUDEPATH += ../../../../inc |
|
30 INCLUDEPATH += $$APP_LAYER_SYSTEMINCLUDE |
|
31 |
|
32 SYMBIAN_PLATFORMS = WINSCW ARMV5 |
|
33 |
|
34 CONFIG += plugin |
|
35 |
|
36 # Input |
|
37 HEADERS += inc/sessioneventhandler.h \ |
|
38 inc/univcaldataplugin.h \ |
|
39 inc/univcaldataplugin_p.h |
|
40 |
|
41 SOURCES += src/sessioneventhandler.cpp \ |
|
42 src/univcaldataplugin.cpp \ |
|
43 src/univcaldataplugin_p.cpp |
|
44 |
|
45 # Build.inf rules |
|
46 BLD_INF_RULES.prj_exports += \ |
|
47 "$${LITERAL_HASH}include <platform_paths.hrh>" \ |
|
48 "rom/univcaldataplugin.iby CORE_APP_LAYER_IBY_EXPORT_PATH(univcaldataplugin.iby)" |
|
49 |
|
50 symbian { |
|
51 BLD_INF_RULES.prj_exports += "BioMtm.rsc /epoc32/data/z/resource/messaging/mtm/BioMtm.rsc" |
|
52 BLD_INF_RULES.prj_exports += "prov.rsc /epoc32/data/z/resource/messaging/bif/prov.rsc" |
|
53 } |
|
54 |
|
55 LIBS += -leuser \ |
|
56 -lconvergedmessageutils\ |
|
57 -ls60qconversions \ |
|
58 -lmsgs \ |
|
59 -lSmcm \ |
|
60 -lgsmu \ |
|
61 -letext \ |
|
62 -lQtCore \ |
|
63 -lefsrv \ |
|
64 -lbioc \ |
|
65 -lbifu |
|
66 |
|
67 # plugin stub deployment |
|
68 plugin.sources = univcaldataplugin.dll |
|
69 plugin.path = \resource\qt\plugins\messaging\datamodel |
|
70 DEPLOYMENT += plugin |
|
71 |
|
72 |
|