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 |
|
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 // Define directories for the .def-files of WINS and WINSCW builds separately. |
|
30 // IMPORTANT NOTICE: The lines in the example that end with a backslash |
|
31 // must have one space after the backslash. |
|
32 #if defined(ARMCC) |
|
33 deffile ../Eabi/ |
|
34 #elif defined( WINSCW ) |
|
35 deffile ../Bwinscw/ |
|
36 #elif defined( WINS ) |
|
37 deffile ../Bwins/ |
|
38 #else |
|
39 deffile ../Bmarm/ |
|
40 #endif |
|
41 |
|
42 SOURCEPATH ../Src |
|
43 |
|
44 SOURCE CaeEngineImpStillAndVf.cpp |
|
45 SOURCE CaeEngineImpVideoRecording.cpp |
|
46 SOURCE CaeEngineImpInfo.cpp |
|
47 SOURCE CaeQualityLevels.cpp |
|
48 SOURCE CaeStillQualityLevels.cpp |
|
49 SOURCE CaeVideoQualityLevels.cpp |
|
50 SOURCE CaeVideoTimes.cpp |
|
51 SOURCE CaeCallbackActive.cpp |
|
52 SOURCE CaeStillStatesActive.cpp |
|
53 SOURCE CaeExtension.cpp |
|
54 |
|
55 // Possible definition in features.hrh |
|
56 #ifdef __CAE_VR_CUSTOM_COMMANDS |
|
57 SOURCE CaeEngineImpVideoNameCustom.cpp |
|
58 #else |
|
59 SOURCE CaeEngineImpVideoName.cpp |
|
60 #endif |
|
61 |
|
62 // Can be removed from here when available in platform. |
|
63 // #define __CAMERA_BURST_MODE |
|
64 // #undef __CAMERA_BURST_MODE |
|
65 |
|
66 #ifdef __CAMERA_BURST_MODE |
|
67 SOURCE CaeImageItem.cpp |
|
68 SOURCE CaeStillBurst.cpp |
|
69 SOURCE CaeStillStatesActiveBurst.cpp |
|
70 #else |
|
71 SOURCE CaeStillStatesActiveNoBurst.cpp |
|
72 #endif |
|
73 |
|
74 SOURCE CaeImageItemExtPro.cpp |
|
75 SOURCE CaeImageQueueExtPro.cpp |
|
76 |
|
77 SOURCE CaeQualityLevelsNoSd.cpp |
|
78 SOURCE CaeStillQualityLevelsNoSd.cpp |
|
79 SOURCE CaeVideoQualityLevelsNoSd.cpp |
|
80 |
|
81 SOURCE CaeDbgUtilities.cpp |
|
82 |
|
83 USERINCLUDE ../Inc |
|
84 USERINCLUDE ../../StillConverter/Inc |
|
85 USERINCLUDE ../../../inc // MW level inc dir |
|
86 USERINCLUDE ../traces |
|
87 |
|
88 MW_LAYER_SYSTEMINCLUDE |
|
89 |
|
90 LIBRARY euser.lib |
|
91 LIBRARY fbscli.lib |
|
92 LIBRARY hal.lib |
|
93 LIBRARY ECom.lib |
|
94 LIBRARY ECAM.lib |
|
95 LIBRARY MMFControllerFramework.lib |
|
96 LIBRARY mediaclientvideo.lib |
|
97 LIBRARY CaeStillConverter.lib |
|
98 LIBRARY ExifLib.lib |
|
99 LIBRARY efsrv.lib |
|
100 LIBRARY imageconversion.lib |
|
101 |
|
102 // LIBRARY flogger.lib // Enable if USE_FILE_LOGGER is defined |
|
103 |
|
104 // End of File |
|