|
1 // Copyright (c) 2001-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 // Image conversion library |
|
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 // Include imagedisplay, imagetransform, imageprocessor, panorama and gifscaler sub-components |
|
27 #include "../GifScaler/group/bld.inf" |
|
28 #include "../ImageDisplay/group/bld.inf" |
|
29 #include "../ImageTransform/group/bld.inf" |
|
30 #include "../ImageProcessor/group/bld.inf" |
|
31 #include "../panorama/group/bld.inf" |
|
32 |
|
33 PRJ_PLATFORMS |
|
34 // specify the platforms your component needs to be built for here |
|
35 // defaults to WINS MARM so you can ignore this if you just build these |
|
36 DEFAULT |
|
37 |
|
38 PRJ_EXPORTS |
|
39 // specify the source file followed by its destination here |
|
40 // copy will be used to copy the source file to its destination |
|
41 // Public include files |
|
42 ../inc_pub/ImageConversion.h SYMBIAN_OS_LAYER_PUBLIC_EXPORT_PATH(imageconversion.h) |
|
43 ../inc_plat/iclrecognizerutil.h SYMBIAN_OS_LAYER_PLATFORM_EXPORT_PATH(iclrecognizerutil.h) |
|
44 |
|
45 ../inc_pub/ICLExif.h SYMBIAN_OS_LAYER_PUBLIC_EXPORT_PATH(iclexif.h) |
|
46 ../ExifUtility/inc_pub/ExifUtility.h SYMBIAN_OS_LAYER_PUBLIC_EXPORT_PATH(exifutility.h) |
|
47 ../inc_pub/ICLExifImageFrame.h SYMBIAN_OS_LAYER_PUBLIC_EXPORT_PATH(iclexifimageframe.h) |
|
48 ../inc_pub/imageframe.h SYMBIAN_OS_LAYER_PUBLIC_EXPORT_PATH(imageframe.h) |
|
49 ../inc_pub/imageframeconst.h SYMBIAN_OS_LAYER_PUBLIC_EXPORT_PATH(imageframeconst.h) |
|
50 |
|
51 ../inc_pub/icl/ImageCodecData.h SYMBIAN_OS_LAYER_PUBLIC_EXPORT_PATH(icl/imagecodecdata.h) |
|
52 ../inc_pub/icl/imageprocessor.h SYMBIAN_OS_LAYER_PUBLIC_EXPORT_PATH(icl/imageprocessor.h) |
|
53 ../inc_pub/icl/ImageCodec.h SYMBIAN_OS_LAYER_PUBLIC_EXPORT_PATH(icl/imagecodec.h) |
|
54 ../inc_plat/icl/imagecodecdef.h SYMBIAN_OS_LAYER_PLATFORM_EXPORT_PATH(icl/imagecodecdef.h) |
|
55 ../inc_pub/icl/ImageData.h SYMBIAN_OS_LAYER_PUBLIC_EXPORT_PATH(icl/imagedata.h) |
|
56 ../inc_pub/icl/ImagePlugin.h SYMBIAN_OS_LAYER_PUBLIC_EXPORT_PATH(icl/imageplugin.h) |
|
57 ../inc_pub/icl/ImageConstruct.h SYMBIAN_OS_LAYER_PUBLIC_EXPORT_PATH(icl/imageconstruct.h) |
|
58 ../inc_pub/icl/ICL_PropertyUIDS.h SYMBIAN_OS_LAYER_PUBLIC_EXPORT_PATH(icl/icl_propertyuids.h) |
|
59 ../inc_pub/icl/imageconversionextension.h SYMBIAN_OS_LAYER_PUBLIC_EXPORT_PATH(icl/imageconversionextension.h) |
|
60 ../inc_pub/icl/imageconversionextensionintf.h SYMBIAN_OS_LAYER_PUBLIC_EXPORT_PATH(icl/imageconversionextensionintf.h) |
|
61 |
|
62 ../inc_pub/icl/ICL_UIDS.hrh /epoc32/include/icl/icl_uids.hrh |
|
63 ../inc_pub/icl/icl_uids_const.hrh /epoc32/include/icl/icl_uids_const.hrh |
|
64 ../inc_pub/icl/icl_uids_def.hrh /epoc32/include/icl/icl_uids_def.hrh |
|
65 |
|
66 ../inc_pub/icl/ICL_PropertyUIDS.hrh /epoc32/include/icl/icl_propertyuids.hrh |
|
67 ../inc_pub/imageframeformats.hrh /epoc32/include/imageframeformats.hrh |
|
68 ../inc_pub/imageframeconst.hrh /epoc32/include/imageframeconst.hrh |
|
69 |
|
70 // ROM buildsupport |
|
71 ../group/ImageConversion.iby /epoc32/rom/include/imageconversion.iby |
|
72 ../ExifUtility/inc/ExifUtility.iby /epoc32/rom/include/exifutility.iby |
|
73 |
|
74 |
|
75 PRJ_MMPFILES |
|
76 // specify the .mmp files required for building the important component releasables |
|
77 // note that you should specify any .mmp files for test programs further down the file. |
|
78 // |
|
79 // It's best if the .MMP files are specified in the order in which the components are |
|
80 // built, but that eventually shouldn't matter |
|
81 // |
|
82 // Use C++ style #defines to denote that a component is only built for a particular platform |
|
83 // |
|
84 // specify "tidy" if the component you need to build doesn't need to be released to |
|
85 // the rest of the company |
|
86 // specify "ignore" if the MMP file exists but should be ignored - William wants this! |
|
87 |
|
88 |
|
89 // Firstly build the image conversion library |
|
90 ../group/ImageProcessorPerf.mmp |
|
91 ../group/ImageConversion.mmp |
|
92 ../group/ExifLibStatic.mmp |
|
93 |
|
94 // Now build the image conversion custom resolver |
|
95 ../group/ImageConversionResolver.mmp |
|
96 |
|
97 // Now build the image recognizer |
|
98 ../group/RecIcl.mmp |
|
99 |
|
100 ../group/JPEGExifPlugin.mmp |
|
101 ../ExifUtility/mmpfiles/ExifUtility.mmp |
|
102 ../group/JPEGImageFramePlugin.mmp |
|
103 |
|
104 |
|
105 |
|
106 PRJ_TESTMMPFILES |
|
107 // specify the .mmp files required for building any test programs here |
|
108 // |
|
109 // you can specify "manual" to denote that a test should be listed in a generated |
|
110 // batch file for running a group of tests which require user input during testing. |
|
111 // you can specify "support" to denote that a file is a test support file and shouldn't |
|
112 // be listed in a batch file for running a group of tests |
|
113 // By default, each test will be listed in a batch file for running a group of tests |
|
114 // which can be left to run without requiring watching over by the person running the tests, |
|
115 // i.e. tests where no user input is required. The default will apply if neither "manual" |
|
116 // or "support" is specified. |
|
117 |
|
118 ../group/TImageViewer.mmp |
|
119 ../group/TImageDisplay.mmp |
|
120 ../group/TImageTran.mmp |
|
121 ../group/tphotoeditor.mmp |
|
122 |
|
123 PRJ_TESTEXPORTS |
|
124 // specify the source file followed by its destination here |
|
125 // copy will be used to copsy the source file to its destination |
|
126 |
|
127 // Romkit include files - additional test files |
|
128 ../group/ImageConversionTest.iby /epoc32/rom/include/imageconversiontest.iby |
|
129 ../group/ImageConversionProfile.iby /epoc32/rom/include/imageconversionprofile.iby |
|
130 ../group/TImageViewer.iby /epoc32/rom/include/timageviewer.iby |
|
131 ../group/TImageDisplay.iby /epoc32/rom/include/timagedisplay.iby |
|
132 ../group/timagetran.iby /epoc32/rom/include/timagetran.iby |
|
133 ../group/tphotoeditor.iby /epoc32/rom/include/tphotoeditor.iby |
|
134 |
|
135 |
|
136 PRJ_TESTEXPORTS |
|
137 // BitmapTransforms |
|
138 #include "../BitmapTransform/group/bld.inf" |
|
139 // MediaClientImage |
|
140 #include "../MediaClientImage/Group/bld.inf" |