author | William Roberts <williamr@symbian.org> |
Thu, 22 Jul 2010 16:32:06 +0100 | |
branch | GCC_SURGE |
changeset 47 | 5b14749788d7 |
parent 35 | a32b19fb291e |
parent 31 | ebfee66fde93 |
permissions | -rw-r--r-- |
31 | 1 |
/* |
2 |
* Copyright (c) 2002 - 2006 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 |
* This is project specification file for the mmssrv.dll. |
|
16 |
* |
|
17 |
*/ |
|
18 |
||
19 |
||
20 |
||
21 |
#include <platform_paths.hrh> |
|
22 |
||
23 |
#include "../../group/mmsopt.mph" |
|
24 |
||
25 |
TARGET mmssrv.dll |
|
26 |
TARGETTYPE dll |
|
27 |
UID 0x10003C5E 0x100058DB |
|
28 |
CAPABILITY CAP_GENERAL_DLL |
|
29 |
VENDORID VID_DEFAULT |
|
30 |
VERSION 10.0 |
|
31 |
PAGED |
|
32 |
||
33 |
SOURCEPATH ../src |
|
34 |
||
35 |
// Macro _NO_MMSS_LOGGING_ to get rid of all logging |
|
36 |
// uncomment to delete logs, comment out to enable logs |
|
37 |
// Master control _MMS_ALL_LOGGING_OFF_ |
|
38 |
// is in file mmsengine/group/mmsopt.mph |
|
39 |
// Comment out _MMS_ALL_LOGGING_OFF_ in that file to enable logging |
|
40 |
// in all mms components |
|
41 |
#ifdef _MMS_ALL_LOGGING_OFF_ |
|
42 |
MACRO _NO_MMSS_LOGGING_ |
|
43 |
#define _NO_MMSS_LOGGING_ |
|
44 |
#endif |
|
45 |
||
46 |
SOURCE mmsserver.cpp |
|
47 |
SOURCE mmssendoperation.cpp |
|
48 |
SOURCE mmsreceivemessage.cpp |
|
49 |
SOURCE mmsschedulesend.cpp |
|
50 |
SOURCE mmsscheduledentry.cpp |
|
51 |
SOURCE mmslog.cpp |
|
52 |
SOURCE mmsbaseoperation.cpp |
|
53 |
SOURCE mmsforwardoperation.cpp |
|
54 |
SOURCE mmsdeleteoperation.cpp |
|
55 |
SOURCE mmsmmboxlist.cpp |
|
56 |
SOURCE mmsreadreport.cpp |
|
57 |
||
58 |
USERINCLUDE ../inc |
|
59 |
USERINCLUDE ../../inc |
|
60 |
USERINCLUDE ../../mmshttptransport/inc |
|
61 |
USERINCLUDE ../../mmscodec/inc |
|
62 |
USERINCLUDE ../../mmsconninit/inc |
|
63 |
USERINCLUDE ../../mmsserversettings/inc |
|
64 |
USERINCLUDE ../../mmsmessage/inc |
|
65 |
||
66 |
SYSTEMINCLUDE ../../../inc |
|
67 |
APP_LAYER_SYSTEMINCLUDE |
|
68 |
||
69 |
LIBRARY mmstransport.lib |
|
70 |
LIBRARY mmsmessage.lib |
|
71 |
LIBRARY mmsgenutils.lib |
|
72 |
LIBRARY mmscodec.lib |
|
73 |
LIBRARY euser.lib |
|
74 |
LIBRARY msgs.lib |
|
75 |
LIBRARY efsrv.lib |
|
76 |
LIBRARY apparc.lib |
|
77 |
LIBRARY schsend.lib |
|
78 |
LIBRARY estor.lib |
|
79 |
LIBRARY bafl.lib |
|
80 |
LIBRARY logwrap.lib |
|
81 |
LIBRARY logcli.lib |
|
82 |
LIBRARY mmsconninit.lib |
|
83 |
LIBRARY esock.lib |
|
84 |
LIBRARY centralrepository.lib |
|
85 |
LIBRARY mmsserversettings.lib |
|
86 |
LIBRARY charconv.lib |
|
87 |
LIBRARY apgrfx.lib |
|
88 |
LIBRARY apmime.lib |
|
89 |
LIBRARY msgcommonutils.lib |
|
90 |
||
91 |
#ifndef _NO_MMSS_LOGGING_ |
|
92 |
LIBRARY flogger.lib |
|
93 |
#else |
|
94 |
DEBUGLIBRARY flogger.lib |
|
95 |
#endif |
|
96 |
||
35
a32b19fb291e
Select the EABI def file when buidling with GCCE
William Roberts <williamr@symbian.org>
parents:
23
diff
changeset
|
97 |
#if defined(EABI) |
31 | 98 |
deffile ../eabi/mmsserver.def |
99 |
#elif defined( WINS ) |
|
100 |
DEFFILE ../bwins/mmsserver.def |
|
101 |
#elif defined( MARM ) |
|
102 |
DEFFILE ../bmarm/mmsserver.def |
|
103 |
#endif |
|
104 |
||
105 |
// End of File |