mmsengine/mmsserver/bld/mmsserver.mmp
changeset 0 72b543305e3a
child 23 238255e8b033
equal deleted inserted replaced
-1:000000000000 0:72b543305e3a
       
     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 SYSTEMINCLUDE   /epoc32/include/http
       
    69 
       
    70 LIBRARY         mmstransport.lib
       
    71 LIBRARY         mmsmessage.lib
       
    72 LIBRARY         mmsgenutils.lib
       
    73 LIBRARY         mmscodec.lib
       
    74 LIBRARY         euser.lib
       
    75 LIBRARY         msgs.lib
       
    76 LIBRARY         efsrv.lib
       
    77 LIBRARY         apparc.lib
       
    78 LIBRARY         schsend.lib
       
    79 LIBRARY         estor.lib
       
    80 LIBRARY         bafl.lib
       
    81 LIBRARY         logwrap.lib
       
    82 LIBRARY         logcli.lib
       
    83 LIBRARY         mmsconninit.lib
       
    84 LIBRARY         esock.lib
       
    85 LIBRARY         centralrepository.lib
       
    86 LIBRARY         mmsserversettings.lib
       
    87 LIBRARY         charconv.lib
       
    88 LIBRARY         apgrfx.lib
       
    89 LIBRARY         apmime.lib
       
    90 LIBRARY         msgcommonutils.lib
       
    91 
       
    92 #ifndef _NO_MMSS_LOGGING_
       
    93 LIBRARY         flogger.lib
       
    94 #else
       
    95 DEBUGLIBRARY    flogger.lib
       
    96 #endif
       
    97 
       
    98 #if defined(ARMCC)
       
    99 deffile         ../eabi/mmsserver.def
       
   100 #elif defined( WINS )
       
   101 DEFFILE         ../bwins/mmsserver.def
       
   102 #elif defined( MARM )
       
   103 DEFFILE         ../bmarm/mmsserver.def
       
   104 #endif
       
   105 
       
   106 // End of File