46
|
1 |
// Copyright (c) 1999-2010 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 |
// Printing services
|
|
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 |
|
|
28 |
DEFAULT WINC
|
|
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/PRNINF.H SYMBIAN_MW_LAYER_PUBLIC_EXPORT_PATH(prninf.h)
|
|
37 |
../inc/PRNPREV.H SYMBIAN_MW_LAYER_PUBLIC_EXPORT_PATH(prnprev.h)
|
|
38 |
../inc/PRNSETUP.H SYMBIAN_MW_LAYER_PUBLIC_EXPORT_PATH(prnsetup.h)
|
|
39 |
../inc/prnpath.h SYMBIAN_MW_LAYER_PLATFORM_EXPORT_PATH(printinguisupport/prnpath.h)
|
|
40 |
../inc/PRNUIDS.H SYMBIAN_MW_LAYER_PUBLIC_EXPORT_PATH(prnuids.h)
|
|
41 |
|
72
|
42 |
../group/print.iby CORE_MW_LAYER_IBY_EXPORT_PATH(print.iby)
|
46
|
43 |
|
|
44 |
PRJ_MMPFILES
|
|
45 |
// specify the .mmp files required for building the important component releasables
|
|
46 |
// note that you should specify any .mmp files for test programs further down the file.
|
|
47 |
//
|
|
48 |
// It's best if the .MMP files are specified in the order in which the components are
|
|
49 |
// built, but that eventually shouldn't matter
|
|
50 |
//
|
|
51 |
// Use C++ style #defines to denote that a component is only built for a particular platform
|
|
52 |
//
|
|
53 |
// specify "tidy" if the component you need to build doesn't need to be released to
|
|
54 |
// the rest of the company
|
|
55 |
// specify "ignore" if the MMP file exists but should be ignored - William wants this!
|
|
56 |
|
|
57 |
|
|
58 |
../group/PRINT.MMP
|
|
59 |
#ifndef WINC
|
|
60 |
../group/PREV.MMP
|
|
61 |
#endif
|
|
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/TPrintTestServer.mmp
|
|
78 |
|
|
79 |
PRJ_TESTEXPORTS
|
|
80 |
|
|
81 |
../group/printtest.iby /epoc32/rom/include/printtest.iby
|
|
82 |
../tef/scripts/printtest_run.bat z:/printtest/printtest_run.bat
|
|
83 |
../tef/scripts/printtest_run.bat /epoc32/release/winscw/udeb/printtest_run.bat
|
|
84 |
../tef/scripts/printtest_run.bat /epoc32/release/winscw/urel/printtest_run.bat
|
|
85 |
../tef/scripts/printtest_T_Fpr.script z:/printtest/printtest_t_fpr.script
|
|
86 |
../tef/scripts/printtest_T_Stream.script z:/printtest/printtest_t_stream.script
|
|
87 |
|
|
88 |
|
|
89 |
|