mmsengine/mmsserver/bld/mmsserver.mmp
changeset 31 ebfee66fde93
child 47 5b14749788d7
child 72 6f657153cbc5
equal deleted inserted replaced
30:6a20128ce557 31:ebfee66fde93
       
     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 
       
    97 #if defined(ARMCC)
       
    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