Msrp/MsrpServer/group/msrpserver.mmp
branchMSRP_FrameWork
changeset 25 505ad3f0ce5c
child 58 cdb720e67852
equal deleted inserted replaced
22:f1578314b8da 25:505ad3f0ce5c
       
     1 /*
       
     2 * Copyright (c) 2009-2010 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 * Initial Contributors:
       
     9 * Nokia Corporation - initial contribution.
       
    10 * Contributors:
       
    11 *
       
    12 * Description:
       
    13 * MSRP Implementation
       
    14 *
       
    15 */
       
    16 
       
    17 // Capability assignment.
       
    18 CAPABILITY ProtServ NetworkControl NetworkServices Location \
       
    19 ReadDeviceData WriteDeviceData
       
    20 
       
    21 // Nokia's Vendor ID.
       
    22 VENDORID        0x101FB657
       
    23 
       
    24 TARGET          msrpserver.exe
       
    25 
       
    26 TARGETTYPE      exe
       
    27 
       
    28 TARGETPATH      /sys/bin
       
    29 
       
    30 UID             0x1000008d 0x2002B59E
       
    31 
       
    32 USERINCLUDE     ../inc
       
    33 USERINCLUDE     ../../inc
       
    34 USERINCLUDE     ../../msrpheader/inc
       
    35 
       
    36 OS_LAYER_SYSTEMINCLUDE
       
    37 MW_LAYER_SYSTEMINCLUDE
       
    38 
       
    39 SOURCEPATH      ../src
       
    40 SOURCE          MSRPMain.cpp
       
    41 SOURCE		    CMSRPServer.cpp
       
    42 SOURCE          CMSRPScheduler.cpp
       
    43 SOURCE          CMSRPTimeOutTimer.cpp 
       
    44 SOURCE          CMSRPConnectionManager.cpp 
       
    45 SOURCE          CMSRPConnection.cpp 
       
    46 SOURCE          TMSRPUtil.cpp
       
    47 SOURCE 			CMSRPServerSession.cpp 
       
    48 SOURCE 			CMSRPServerSubSession.cpp
       
    49 SOURCE 			CMSRPConnListener.cpp
       
    50 SOURCE 			CMSRPConnector.cpp
       
    51 SOURCE 			CMSRPReader.cpp 
       
    52 SOURCE 			CMSRPParser.cpp
       
    53 SOURCE 			CMSRPWriter.cpp 
       
    54 SOURCE 			CMSRPMessageHandler.cpp
       
    55 SOURCE 			CMSRPMsgParser.cpp 
       
    56 SOURCE			TStateFactory.cpp 
       
    57 SOURCE			TStates.cpp 
       
    58 SOURCE          CMSRPMessageChunkState.cpp
       
    59 
       
    60 
       
    61 
       
    62 LIBRARY         euser.lib
       
    63 LIBRARY         sysutil.lib
       
    64 LIBRARY         esock.lib   // RSocketServ
       
    65 LIBRARY         insock.lib  // TInetAddr
       
    66 LIBRARY         commdb.lib
       
    67 LIBRARY         bafl.lib
       
    68 LIBRARY         random.lib
       
    69 DEBUGLIBRARY    flogger.lib
       
    70 #if defined(__SERIES60_)
       
    71 LIBRARY		  	extendedconnpref.lib
       
    72 LIBRARY 	  	netmeta.lib
       
    73 #endif
       
    74 
       
    75 // end of file
       
    76 LIBRARY msrpheader.lib estor.lib efsrv.lib inetprotutil.lib
       
    77