|
1 /* |
|
2 * Copyright (c) 2002-2007 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of "Eclipse Public License v1.0" |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: Camera Application Engine (TEST VERSION!) |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #include <platform_paths.hrh> |
|
20 |
|
21 TARGET CaeEngine.dll |
|
22 TARGETTYPE dll |
|
23 |
|
24 UID 0x1000008d 0x101F8569 |
|
25 |
|
26 CAPABILITY CAP_GENERAL_DLL |
|
27 VENDORID VID_DEFAULT |
|
28 |
|
29 |
|
30 // Define directories for the .def-files of WINS and WINSCW builds separately. |
|
31 // IMPORTANT NOTICE: The lines in the example that end with a backslash |
|
32 // must have one space after the backslash. |
|
33 #if defined(ARMCC) |
|
34 deffile ../Eabi/ |
|
35 #elif defined( WINSCW ) |
|
36 deffile ../Bwinscw/ |
|
37 #elif defined( WINS ) |
|
38 deffile ../Bwins/ |
|
39 #else |
|
40 deffile ../Bmarm/ |
|
41 #endif |
|
42 |
|
43 // To compile error simulations in. |
|
44 MACRO CAE_TEST_VERSION |
|
45 #define CAE_TEST_VERSION |
|
46 |
|
47 SOURCEPATH ../Src |
|
48 |
|
49 SOURCE CaeEngineImpStillAndVf.cpp |
|
50 SOURCE CaeEngineImpVideoRecording.cpp |
|
51 SOURCE CaeEngineImpInfo.cpp |
|
52 SOURCE CaeQualityLevels.cpp |
|
53 SOURCE CaeStillQualityLevels.cpp |
|
54 SOURCE CaeVideoQualityLevels.cpp |
|
55 SOURCE CaeVideoTimes.cpp |
|
56 SOURCE CaeCallbackActive.cpp |
|
57 SOURCE CaeStillStatesActive.cpp |
|
58 SOURCE CaeExtension.cpp |
|
59 |
|
60 // Possible definition in features.hrh |
|
61 #ifdef __CAE_VR_CUSTOM_COMMANDS |
|
62 SOURCE CaeEngineImpVideoNameCustom.cpp |
|
63 #else |
|
64 SOURCE CaeEngineImpVideoName.cpp |
|
65 #endif |
|
66 |
|
67 // Can be removed from here when available in platform. |
|
68 // #define __CAMERA_BURST_MODE |
|
69 |
|
70 #ifdef __CAMERA_BURST_MODE |
|
71 SOURCE CaeImageItem.cpp |
|
72 SOURCE CaeStillBurst.cpp |
|
73 SOURCE CaeEngineImpStillBurstSupport.cpp |
|
74 #else |
|
75 SOURCE CaeEngineImpNoStillBurst.cpp |
|
76 #endif |
|
77 |
|
78 SOURCE CaeQualityLevelsNoSd.cpp |
|
79 SOURCE CaeStillQualityLevelsNoSd.cpp |
|
80 SOURCE CaeVideoQualityLevelsNoSd.cpp |
|
81 |
|
82 SOURCE CaeDbgUtilities.cpp |
|
83 |
|
84 #ifdef CAE_TEST_VERSION |
|
85 SOURCE CaeEngineImpTestErrors.cpp |
|
86 #endif |
|
87 |
|
88 USERINCLUDE ../Inc |
|
89 USERINCLUDE ../../StillConverter/Inc |
|
90 USERINCLUDE ../../../inc // MW level inc dir |
|
91 |
|
92 MW_LAYER_SYSTEMINCLUDE |
|
93 |
|
94 LIBRARY euser.lib |
|
95 LIBRARY fbscli.lib |
|
96 LIBRARY hal.lib |
|
97 LIBRARY ECAM.lib |
|
98 LIBRARY MMFControllerFramework.lib |
|
99 LIBRARY mediaclientvideo.lib |
|
100 LIBRARY CaeStillConverter.lib |
|
101 LIBRARY ExifLib.lib |
|
102 LIBRARY efsrv.lib |
|
103 LIBRARY imageconversion.lib |
|
104 |
|
105 #ifdef EABI |
|
106 library ECOM.LIB |
|
107 #endif |
|
108 |
|
109 // LIBRARY flogger.lib // Enable if USE_FILE_LOGGER is defined |
|
110 |
|
111 EXPORTUNFROZEN |
|
112 |
|
113 // End of File |