atext/server/group/extsrv.mmp
changeset 0 29b1cd4cb562
child 13 20fda83a6398
equal deleted inserted replaced
-1:000000000000 0:29b1cd4cb562
       
     1 /*
       
     2 * Copyright (c) 2008 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:  Project definition file for project ATEXT server
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 // Use the flag below and recompile to skip the creation of search helper data
       
    20 // for every at command metadata entry. The search helper data consumes 2xTInt
       
    21 // bytes of data for every AT command. If multiple plugins need to support the
       
    22 // same AT commands then this flag speeds up the metadata creation.
       
    23 
       
    24 #define OPTIMIZE_FOR_SPEED
       
    25 
       
    26 // Use the flag below and recompile to list the full support entries for AT
       
    27 // command handling. This is useful to find out the plugin responsibilities.
       
    28 
       
    29 #define PRINT_SUPPORT_DATA
       
    30 
       
    31 #include <platform_paths.hrh>
       
    32 #include "../inc/prjconfig.h"
       
    33 
       
    34 #ifdef OPTIMIZE_FOR_SPEED
       
    35 MACRO PRJ_OPTIMIZE_FOR_SPEED
       
    36 #define PRJ_OPTIMIZE_FOR_SPEED
       
    37 #endif  // OPTIMIZE_FOR_SPEED
       
    38 
       
    39 #ifdef PRINT_SUPPORT_DATA
       
    40 MACRO PRJ_PRINT_SUPPORT_DATA
       
    41 #define PRJ_PRINT_SUPPORT_DATA
       
    42 #endif  // PRINT_SUPPORT_DATA
       
    43 
       
    44 TARGET                  atext.exe
       
    45 TARGETTYPE              exe
       
    46 UID                     0x1000008d 0x2001CBEB
       
    47 EPOCSTACKSIZE           0x5000 // Hack for plugins using RCmManager; remove this line when RCmManager becomes client-server
       
    48 EPOCHEAPSIZE            0x1000 0x2000000  // Use same as MCE
       
    49 
       
    50 CAPABILITY              CAP_SERVER NetworkControl CommDD
       
    51 VENDORID                VID_DEFAULT
       
    52 
       
    53 SOURCEPATH              ../src
       
    54 SOURCE                  main.cpp
       
    55 SOURCE                  atextsrv.cpp
       
    56 SOURCE                  atextsession.cpp
       
    57 SOURCE                  atextmetadata.cpp
       
    58 SOURCE                  atextlisten.cpp
       
    59 
       
    60 USERINCLUDE             ../inc ../../client/inc
       
    61 
       
    62 // Default system include paths for OS extension layer modules.
       
    63 OS_LAYER_SYSTEMINCLUDE
       
    64 
       
    65 // Note:
       
    66 // The only other SYSTEMINCLUDE should you shall add are Symbian specific ones.
       
    67 // If there is a S60 header in the subdirectory then that should be
       
    68 // added into the include statements (like #include <phonebook/header.h>)
       
    69 //SYSTEMINCLUDE           /epoc32/include/ecom
       
    70 
       
    71 LIBRARY                 atextpluginbase.lib
       
    72 LIBRARY			        ecom.lib
       
    73 LIBRARY			        euser.lib
       
    74 
       
    75 #ifdef PRJ_FILE_TRACE
       
    76 LIBRARY	flogger.lib
       
    77 #endif