apengine/apeng/group/APEngine.MMP
changeset 70 ac5daea24fb0
equal deleted inserted replaced
61:8b0c979bbe8c 70:ac5daea24fb0
       
     1 /*
       
     2 * Copyright (c) 2002 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 description file for the Access Point Engine
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #include <data_caging_paths.hrh>
       
    20 #include <platform_paths.hrh>
       
    21 
       
    22 TARGET      APEngine.dll
       
    23 TARGETTYPE      dll
       
    24 UID         0x1000008d  0x10008D3A
       
    25 
       
    26 CAPABILITY  CAP_GENERAL_DLL
       
    27 VENDORID VID_DEFAULT
       
    28 
       
    29 
       
    30 SOURCEPATH  ../src
       
    31 SOURCE      ApEngineLogger.cpp
       
    32 SOURCE      ApListItem.cpp
       
    33 SOURCE      APSelect.cpp
       
    34 SOURCE      APDataHandler.cpp
       
    35 SOURCE      APUtils.cpp
       
    36 SOURCE      APAccessPointItem.cpp
       
    37 SOURCE      ApEngineCommons.cpp
       
    38 SOURCE      ActiveApDb.cpp
       
    39 SOURCE      ActiveApDbNotifier.cpp
       
    40 SOURCE      aplistitemlist.cpp
       
    41 SOURCE      ApProtHandler.cpp
       
    42 SOURCE      ApListItemKey.cpp
       
    43 SOURCE		ApNetworkItem.cpp
       
    44 SOURCE		APNetworks.cpp
       
    45 SOURCE	    apnetworkitemlist.cpp
       
    46 SOURCE	    VpnApItem.cpp
       
    47 SOURCE	    VpnApEngine.cpp
       
    48 
       
    49 
       
    50 
       
    51 START RESOURCE ../Data/ApEngine.rss
       
    52 HEADER
       
    53 TARGETPATH RESOURCE_FILES_DIR
       
    54 LANGUAGE_IDS
       
    55 END  // RESOURCE
       
    56 
       
    57 // Component specific internal headers 
       
    58 USERINCLUDE			../inc
       
    59 
       
    60 // ADO specific internal headers 
       
    61 SYSTEMINCLUDE		../../../inc
       
    62 
       
    63 //Macro to /epoc32 headers
       
    64 MW_LAYER_SYSTEMINCLUDE
       
    65 
       
    66 LIBRARY     commdb.lib 
       
    67 LIBRARY     euser.lib
       
    68 LIBRARY     efsrv.lib
       
    69 LIBRARY     bafl.lib
       
    70 LIBRARY     insock.lib
       
    71 LIBRARY     esock.lib
       
    72 LIBRARY     FeatMgr.lib
       
    73 LIBRARY		Vpnapi.lib
       
    74 LIBRARY     centralrepository.lib
       
    75 
       
    76 #if defined(ARMCC)
       
    77     DEFFILE ../EABI/ApEngine_EKA2.def
       
    78 #elif defined( WINSCW )
       
    79     DEFFILE ../BWinsCw/ApEngine_EKA2.def
       
    80 #elif defined( WINS )
       
    81     DEFFILE ../BWins/ApEngine_EKA2.def
       
    82 #else
       
    83     DEFFILE ../BMarm/ApEngine_EKA2.def
       
    84 #endif
       
    85 
       
    86 // Define this macro if you wish to enable logging
       
    87 //#define __TEST_APENGINE_LOG_ENABLED
       
    88 
       
    89 
       
    90 // Define this macro if you wish to enable IPv6 support for testing
       
    91 // It will override FeatureManager's NOT SUPPORTED....
       
    92 //MACRO __TEST_IPV6_SUPPORT    
       
    93 
       
    94 #ifdef __TEST_APENGINE_LOG_ENABLED
       
    95 	MACRO __TEST_APENGINE_LOG__
       
    96 	LIBRARY     flogger.lib
       
    97 #endif	// __TEST_APENGINE_LOG_ENABLED
       
    98 
       
    99 // Define this to test CDMA support.
       
   100 //MACRO __TEST_CDMA_SUPPORT
       
   101 
       
   102 
       
   103 // Define this to test CSD support.
       
   104 //MACRO __TEST_CSD_SUPPORT
       
   105 
       
   106 
       
   107 // Define this to test HSCSD support.
       
   108 //MACRO __TEST_HSCSD_SUPPORT
       
   109 
       
   110 // Define this to test CDMA write-protect support.
       
   111 //MACRO __TEST_CDMA_WRITE_PROTECT
       
   112 
       
   113 // Define this to test WLAN support.
       
   114 // MACRO __TEST_WLAN_SUPPORT
       
   115 
       
   116 
       
   117 // Define this to test LAN support.
       
   118 #ifdef WINS
       
   119     MACRO __TEST_LAN_BEARER
       
   120 #endif
       
   121 
       
   122 // End of File