messagingappbase/obexmtms/btmtm/btserver/group/BLD.INF
changeset 31 ebfee66fde93
child 47 5b14749788d7
equal deleted inserted replaced
30:6a20128ce557 31:ebfee66fde93
       
     1 // Copyright (c) 2001-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 // $Workfile: BLD.INF $
       
    15 // $Author: Stevep $
       
    16 // $Revision: 9 $
       
    17 // $Date: 21/03/02 11:12 $
       
    18 // This file basically provides the information required for building the whole of a component
       
    19 // C & C++ style comments are allowed in this file because it's passed through the C++ preprocessor
       
    20 // Examples are provided below of the kind of things we're expecting
       
    21 // 
       
    22 //
       
    23 
       
    24 
       
    25 PRJ_EXPORTS
       
    26 // specify the source file followed by its destination here
       
    27 // copy will be used to copy the source file to its destination
       
    28 // If there's no destination then the source file will be copied
       
    29 // to the same name in /epoc32/include
       
    30 
       
    31 
       
    32 
       
    33 PRJ_MMPFILES
       
    34 // specify the .mmp files required for building the important component releasables
       
    35 // note that you should specify any .mmp files for test programs further down the file.
       
    36 //
       
    37 // It's best if the .MMP files are specified in the order in which the components are
       
    38 // built, but that eventually shouldn't matter
       
    39 //
       
    40 // Use C++ style #defines to denote that a component is only built for a particular platform
       
    41 //
       
    42 // specify "tidy" if the component you need to build doesn't need to be released to
       
    43 // the rest of the company
       
    44 // specify "ignore" if the MMP file exists but should be ignored - William wants this!
       
    45 
       
    46 ./btsmtm.mmp
       
    47 
       
    48 
       
    49 
       
    50 
       
    51 PRJ_TESTMMPFILES
       
    52 // specify the .mmp files required for building any test programs here
       
    53 //
       
    54 // you can specify "manual" to denote that a test should be listed in a generated
       
    55 // batch file for running a group of tests which require user input during testing.
       
    56 // you can specify "support" to denote that a file is a test support file and shouldn't
       
    57 // be listed in a batch file for running a group of tests
       
    58 // By default, each test will be listed in a batch file for running a group of tests
       
    59 // which can be left to run without requiring watching over by the person running the tests,
       
    60 // i.e. tests where no user input is required.  The default will apply if neither "manual"
       
    61 // or "support" is specified.