|
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 // Simple grid layout engine |
|
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 |
|
31 |
|
32 PRJ_EXPORTS |
|
33 // specify the source file followed by its destination here |
|
34 // copy will be used to copy the source file to its destination |
|
35 // If there's no destination then the source file will be copied |
|
36 // to the same name in \epoc32\include |
|
37 |
|
38 |
|
39 ../inc/GRDCELLS.H SYMBIAN_MW_LAYER_PUBLIC_EXPORT_PATH(grdcells.h) |
|
40 ../inc/GRDPRINT.H SYMBIAN_MW_LAYER_PUBLIC_EXPORT_PATH(grdprint.h) |
|
41 ../inc/GRDPRINT.INL SYMBIAN_MW_LAYER_PUBLIC_EXPORT_PATH(grdprint.inl) |
|
42 ../inc/GRDSTD.H SYMBIAN_MW_LAYER_PUBLIC_EXPORT_PATH(grdstd.h) |
|
43 ../inc/GRDSTD.INL SYMBIAN_MW_LAYER_PUBLIC_EXPORT_PATH(grdstd.inl) |
|
44 ../inc/GRDDEF.H SYMBIAN_MW_LAYER_PUBLIC_EXPORT_PATH(grddef.h) |
|
45 |
|
46 |
|
47 PRJ_MMPFILES |
|
48 // specify the .mmp files required for building the important component releasables |
|
49 // note that you should specify any .mmp files for test programs further down the file. |
|
50 // |
|
51 // It's best if the .MMP files are specified in the order in which the components are |
|
52 // built, but that eventually shouldn't matter |
|
53 // |
|
54 // Use C++ style #defines to denote that a component is only built for a particular platform |
|
55 // |
|
56 // specify "tidy" if the component you need to build doesn't need to be released to |
|
57 // the rest of the company |
|
58 // specify "ignore" if the MMP file exists but should be ignored - William wants this! |
|
59 |
|
60 |
|
61 ../group/GRID.MMP |
|
62 |
|
63 |
|
64 |
|
65 PRJ_TESTMMPFILES |
|
66 // specify the .mmp files required for building any test programs here |
|
67 // |
|
68 // you can specify "manual" to denote that a test should be listed in a generated |
|
69 // batch file for running a group of tests which require user input during testing. |
|
70 // you can specify "support" to denote that a file is a test support file and shouldn't |
|
71 // be listed in a batch file for running a group of tests |
|
72 // By default, each test will be listed in a batch file for running a group of tests |
|
73 // which can be left to run without requiring watching over by the person running the tests, |
|
74 // i.e. tests where no user input is required. The default will apply if neither "manual" |
|
75 // or "support" is specified. |
|
76 |
|
77 ../tef/TGridTestServer.mmp |
|
78 |
|
79 PRJ_TESTEXPORTS |
|
80 |
|
81 ../tef/scripts/gridtest_run.bat z:/gridtest/gridtest_run.bat |
|
82 ../tef/scripts/gridtest_run.bat /epoc32/release/winscw/udeb/gridtest_run.bat |
|
83 ../tef/scripts/gridtest_run.bat /epoc32/release/winscw/urel/gridtest_run.bat |
|
84 ../tef/scripts/gridtest_T_CoGrid.script z:/gridtest/gridtest_t_cogrid.script |
|
85 ../tef/scripts/gridtest_T_Grid0.script z:/gridtest/gridtest_t_grid0.script |
|
86 ../tef/scripts/gridtest_T_Glay.script z:/gridtest/gridtest_t_glay.script |
|
87 ../group/GridTest.iby /epoc32/rom/include/gridtest.iby |