ncdengine/engine/inc/build_config.mmpi
changeset 0 ba25891c3a9e
equal deleted inserted replaced
-1:000000000000 0:ba25891c3a9e
       
     1 /*
       
     2 * Copyright (c) 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:   Resource headers for project ?myapp
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef CATALOGS_BUILD_CONFIG_MMPI
       
    20 #define CATALOGS_BUILD_CONFIG_MMPI
       
    21 // This file is included in ncd engine .mmp project files.
       
    22 // Always submit this file to version control with default settings.
       
    23 // Do not include this file in source/header files.
       
    24 
       
    25 // Minimum capabilities required by engine DLLs and plugins
       
    26 #define CATALOGS_MINIMUM_CAPABILITIES CAP_APPLICATION PowerMgmt TrustedUI ProtServ SurroundingsDD NetworkControl
       
    27 
       
    28 // Enable if you want to build the engine with minimum capabilities
       
    29 //#define CATALOGS_BUILD_WITH_MINIMUM_CAPABILITIES
       
    30 #ifdef CATALOGS_BUILD_WITH_MINIMUM_CAPABILITIES    
       
    31     #define CATALOGS_DLL_CAPABILITIES CAP_APPLICATION PowerMgmt TrustedUI ProtServ SurroundingsDD NetworkControl
       
    32 #else
       
    33     #define CATALOGS_DLL_CAPABILITIES CAP_ECOM_PLUGIN
       
    34 #endif
       
    35 
       
    36 // This is the main switch that defines if NCD Engine logging is enabled.
       
    37 // Please note that if this is ON, the debug must also be turned ON in the client
       
    38 // side components. Otherwise the required debuglogging initialization calls are not done
       
    39 // in client-side process.
       
    40 // Off by default.
       
    41 //#define CATALOGS_DEBUG_ENABLED
       
    42 
       
    43 // This file is included in the component .mmp files, so the switches use 
       
    44 // MACRO definitions. 
       
    45 
       
    46 #ifdef CATALOGS_DEBUG_ENABLED
       
    47 
       
    48 // See the documentation of the flags in catalogsdebug.h
       
    49 MACRO CATALOGS_BUILD_CONFIG_DEBUG
       
    50 
       
    51 MACRO CATALOGS_BUILD_CONFIG_DEBUG_EXT_LOGGER
       
    52 //MACRO CATALOGS_BUILD_CONFIG_DEBUG_FILE_LOGGER
       
    53 //MACRO CATALOGS_BUILD_CONFIG_DEBUG_RDEBUG
       
    54 
       
    55 //MACRO CATALOGS_BUILD_CONFIG_HEAP_CHECKER
       
    56 MACRO CATALOGS_LOG_TRACE
       
    57 MACRO CATALOGS_LOG_DEBUG
       
    58 MACRO CATALOGS_DEBUG_ASSERTS
       
    59 
       
    60 // Enables platform heap check macros in the engine
       
    61 MACRO CATALOGS_BUILD_CONFIG_HEAP_MARKS
       
    62 
       
    63 #endif // CATALOGS_DEBUG_ENABLED
       
    64 
       
    65 // This enables HookLogger support.
       
    66 // Off by default.
       
    67 //OPTION CW -frame on
       
    68 
       
    69 // This enables device identification overrides from catalogs_device_config.h
       
    70 // Use this to receive production catalogs from the production server
       
    71 // Off by default.
       
    72 //MACRO CATALOGS_BUILD_CONFIG_OVERRIDE_DEVICE
       
    73 
       
    74 #endif