PECengine/StorageManager2/Group/PEngStorageServer.mmp
changeset 0 094583676ce7
equal deleted inserted replaced
-1:000000000000 0:094583676ce7
       
     1 /*
       
     2 * Copyright (c) 2004 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:  Presence Storage Server project definition.
       
    15 *
       
    16 */
       
    17 
       
    18 // To get the APP_LAYER_SYSTEMINCLUDE-definition
       
    19 #include <platform_paths.hrh>
       
    20 
       
    21 #include "../../Group/PEngUIDs2.h"
       
    22 
       
    23 TARGET          PENGSTORSERV.EXE
       
    24 TARGETTYPE      exe
       
    25 
       
    26 UID             0 KPEngStorageServer2Uid3
       
    27 VENDORID        VID_DEFAULT
       
    28 CAPABILITY      CAP_SERVER
       
    29 
       
    30 
       
    31 TARGETPATH      /system/Libs
       
    32 SOURCEPATH  ../ServerSrc
       
    33 
       
    34 // Server classes
       
    35 SOURCE          CPEngStorageServer.cpp
       
    36 DOCUMENT        MPEngStorageServer.h
       
    37 SOURCE          CPEngStorageSession.cpp
       
    38 SOURCE          CPEngAdminSubSession.cpp
       
    39 SOURCE          CPEngStorageSubSession.cpp
       
    40 // DOCUMENT        ../ServerInc/TPEngStorageServerMessages.h
       
    41 
       
    42 // Store Folder
       
    43 SOURCE          CPEngStorageFolder.cpp
       
    44 DOCUMENT        MPEngStorageFolder.h
       
    45 SOURCE          CPEngDataEntry.cpp
       
    46 
       
    47 // Request Handlers
       
    48 SOURCE          CPEngRequestHandler.cpp
       
    49 SOURCE          CPEngHandlerListenEvents.cpp
       
    50 SOURCE          CPEngHandlerListenSIDs.cpp
       
    51 
       
    52 // Message packer and haching tools
       
    53 // Code is shared with the server side, so same technique is used  on both sides
       
    54 SOURCEPATH  ../Tools
       
    55 SOURCE          PEngHashTool.cpp
       
    56 
       
    57 // Storage Server entry point
       
    58 SOURCEPATH  ../ServerSrc
       
    59 SOURCE          ServerEntryPoint.cpp
       
    60 
       
    61 
       
    62 
       
    63 // Presence Engine includes
       
    64 USERINCLUDE         ../ServerInc
       
    65 USERINCLUDE         ../ServerSrc
       
    66 USERINCLUDE         ../ClientInc
       
    67 USERINCLUDE         ../Tools
       
    68 USERINCLUDE         ../../CoreUtilsLib2/Inc
       
    69 USERINCLUDE         ../../CoreUtilsLib2/SrvInc
       
    70 USERINCLUDE         ../../IncApi
       
    71 USERINCLUDE         ../../Group
       
    72 USERINCLUDE         ../../PluginServer2/ClntInc
       
    73 
       
    74 // System includes
       
    75 // Default system include paths for application layer modules.
       
    76 APP_LAYER_SYSTEMINCLUDE
       
    77 //Relative system include for groupcommunications/inc
       
    78 SYSTEMINCLUDE       ../../../inc
       
    79 
       
    80 // Symbian dependences
       
    81 LIBRARY     euser.lib   // User classes
       
    82 LIBRARY     bafl.lib    // Descriptor arrays
       
    83 LIBRARY     hash.lib    // Hashing tools
       
    84 LIBRARY     imut.lib    // Base64 encoding
       
    85 LIBRARY     efsrv.lib   // For parsing of the dll name, starting of server
       
    86 LIBRARY     estor.lib   // B-trees support
       
    87 
       
    88 
       
    89 // Presence Engine dependences
       
    90 LIBRARY     PEngCoreUtilsLib2.lib   // General PEC Engine utils
       
    91 
       
    92 //  End of File
       
    93