applayerprotocols/wapbase/Group/bld.inf
branchRCL_3
changeset 19 c0c2f28ace9c
equal deleted inserted replaced
18:5f1cd966e0d9 19:c0c2f28ace9c
       
     1 // Copyright (c) 1999-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 // Wap engine parsers and utilities
       
    15 // This file basically provides the information required for building the whole of a component
       
    16 // C & C++ style comments are allowed in this file because it's passed through the C++ preprocessor
       
    17 // Examples are provided below of the kind of things we're expecting
       
    18 // 
       
    19 //
       
    20 
       
    21 /**
       
    22  @file
       
    23 */
       
    24 
       
    25 
       
    26 PRJ_PLATFORMS
       
    27 // specify the platforms your component needs to be built for here
       
    28 // defaults to WINS MARM so you can ignore this if you just build these
       
    29 
       
    30 PRJ_EXPORTS
       
    31 // specify the source file followed by its destination here
       
    32 // copy will be used to copy the source file to its destination
       
    33 // If there's no destination then the source file will be copied
       
    34 // to the same name in \epoc32\include
       
    35 
       
    36 ../inc/attrlut.h SYMBIAN_MW_LAYER_PUBLIC_EXPORT_PATH(attrlut.h)
       
    37 ../inc/CBNFParser.h SYMBIAN_MW_LAYER_PUBLIC_EXPORT_PATH(cbnfparser.h)
       
    38 ../inc/CBNFNode.h SYMBIAN_MW_LAYER_PUBLIC_EXPORT_PATH(cbnfnode.h)
       
    39 ../inc/CDTDModel.h SYMBIAN_MW_LAYER_PUBLIC_EXPORT_PATH(cdtdmodel.h)
       
    40 ../inc/cnode.h SYMBIAN_MW_LAYER_PUBLIC_EXPORT_PATH(cnode.h)
       
    41 ../inc/cnode.inl SYMBIAN_MW_LAYER_PLATFORM_EXPORT_PATH(cnode.inl)
       
    42 ../inc/dtdnode.h SYMBIAN_MW_LAYER_PUBLIC_EXPORT_PATH(dtdnode.h)
       
    43 ../inc/dtdnode.inl SYMBIAN_MW_LAYER_PLATFORM_EXPORT_PATH(dtdnode.inl)
       
    44 ../inc/estatus.h SYMBIAN_MW_LAYER_PUBLIC_EXPORT_PATH(estatus.h)
       
    45 ../inc/mdptx.h SYMBIAN_MW_LAYER_PUBLIC_EXPORT_PATH(mdptx.h)
       
    46 ../inc/wapattrdf.h SYMBIAN_MW_LAYER_PUBLIC_EXPORT_PATH(wapattrdf.h)
       
    47 ../bnf/CStack.h SYMBIAN_MW_LAYER_PUBLIC_EXPORT_PATH(cstack.h)
       
    48 ../bnf/CStack.inl SYMBIAN_MW_LAYER_PLATFORM_EXPORT_PATH(cstack.inl)
       
    49 ../bnf/CMarkedStack.h SYMBIAN_MW_LAYER_PUBLIC_EXPORT_PATH(cmarkedstack.h)
       
    50 ../bnf/CFragmentedString.h SYMBIAN_MW_LAYER_PUBLIC_EXPORT_PATH(cfragmentedstring.h)
       
    51 ../bnf/CRuleMarkedStack.h SYMBIAN_MW_LAYER_PUBLIC_EXPORT_PATH(crulemarkedstack.h)
       
    52 ../bnf/CRuleMarkedStack.inl SYMBIAN_MW_LAYER_PLATFORM_EXPORT_PATH(crulemarkedstack.inl)
       
    53 ../bnf/CMarkedStack.inl SYMBIAN_MW_LAYER_PLATFORM_EXPORT_PATH(cmarkedstack.inl)
       
    54 ../bnf/CNoDeleteAttribute.h SYMBIAN_MW_LAYER_PUBLIC_EXPORT_PATH(cnodeleteattribute.h)
       
    55 ../inc/Wapengstd.h SYMBIAN_MW_LAYER_PUBLIC_EXPORT_PATH(wapengstd.h) 
       
    56 ../inc/WapTestUtils.h SYMBIAN_MW_LAYER_PUBLIC_EXPORT_PATH(waptestutils.h)
       
    57 ../inc/WapTestUtils.inl SYMBIAN_MW_LAYER_PLATFORM_EXPORT_PATH(waptestutils.inl)
       
    58 ../inc/PragmaMessage.h SYMBIAN_MW_LAYER_PUBLIC_EXPORT_PATH(pragmamessage.h)
       
    59 
       
    60 
       
    61 PRJ_MMPFILES
       
    62 // specify the .mmp files required for building the important component releasables
       
    63 // note that you should specify any .mmp files for test programs further down the file.
       
    64 //
       
    65 // It's best if the .MMP files are specified in the order in which the components are
       
    66 // built, but that eventually shouldn't matter
       
    67 //
       
    68 // Use C++ style #defines to denote that a component is only built for a particular platform
       
    69 //
       
    70 // specify "tidy" if the component you need to build doesn't need to be released to
       
    71 // the rest of the company
       
    72 // specify "ignore" if the MMP file exists but should be ignored - William wants this!
       
    73 
       
    74 ../mmpfiles/bnf.mmp
       
    75 ../mmpfiles/dtdmdl.mmp
       
    76 ../mmpfiles/wnode.mmp
       
    77 ../mmpfiles/wutil.mmp
       
    78 
       
    79 PRJ_TESTMMPFILES
       
    80 // specify the .mmp files required for building any test programs here
       
    81 //
       
    82 // you can specify "manual" to denote that a test should be listed in a generated
       
    83 // batch file for running a group of tests which require user input during testing.
       
    84 // you can specify "support" to denote that a file is a test support file and shouldn't
       
    85 // be listed in a batch file for running a group of tests
       
    86 // By default, each test will be listed in a batch file for running a group of tests
       
    87 // which can be left to run without requiring watching over by the person running the tests,
       
    88 // i.e. tests where no user input is required.  The default will apply if neither "manual"
       
    89 // or "support" is specified.