mmsengine/mmshttptransport/bld/mmstransport.mmp
changeset 0 72b543305e3a
child 26 ebe688cedc25
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 mmstransport.dll.
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 
       
    21 #include <platform_paths.hrh>
       
    22 
       
    23 #include "../../group/mmsopt.mph"
       
    24 
       
    25 TARGET          mmstransport.dll
       
    26 TARGETTYPE      dll
       
    27 UID             0x1000008d 0x101f4691
       
    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          mmssession.cpp
       
    47 SOURCE          mmstransaction.cpp
       
    48 SOURCE          mmsoperationtimer.cpp
       
    49 SOURCE          mmsbearerstatus.cpp
       
    50 SOURCE          mmstransport.cpp
       
    51 
       
    52 USERINCLUDE     ../inc
       
    53 USERINCLUDE     ../../mmsserver/inc
       
    54 USERINCLUDE     ../../mmscodec/inc
       
    55 USERINCLUDE     ../../inc
       
    56 
       
    57 SYSTEMINCLUDE   ../../../inc
       
    58 APP_LAYER_SYSTEMINCLUDE
       
    59 SYSTEMINCLUDE   /epoc32/include/http
       
    60 SYSTEMINCLUDE   /epoc32/include/ecom
       
    61 
       
    62 LIBRARY         euser.lib
       
    63 LIBRARY         msgs.lib
       
    64 LIBRARY         esock.lib
       
    65 // Http libraries
       
    66 LIBRARY         http.lib
       
    67 LIBRARY         inetprotutil.lib
       
    68 LIBRARY         bafl.lib
       
    69 LIBRARY         ecom.lib
       
    70 LIBRARY         featmgr.lib
       
    71 
       
    72 #ifndef _NO_MMSS_LOGGING_
       
    73 LIBRARY         flogger.lib
       
    74 #else
       
    75 DEBUGLIBRARY    flogger.lib
       
    76 #endif
       
    77 
       
    78 #if defined( ARMCC )
       
    79 deffile         ../eabi/mmstransport.def
       
    80 #elif defined( WINSCW )
       
    81 deffile         ../bwinscw/mmstransport.def
       
    82 #endif
       
    83 
       
    84 // End of File