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