1 /* |
|
2 * Copyright (c) 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: Project definition file for project Active Palette |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 // =========================================================================== |
|
20 // Target definition |
|
21 TARGET ActivePalette.dll |
|
22 TARGETTYPE dll |
|
23 UID 0x1000008d 0x10208A6D |
|
24 CAPABILITY CAP_GENERAL_DLL |
|
25 VENDORID VID_DEFAULT |
|
26 |
|
27 |
|
28 // --------------------------------------------------------------------------- |
|
29 // Includes |
|
30 #include <defaultcaps.hrh> |
|
31 #include <data_caging_paths.hrh> |
|
32 #include <platform_paths.hrh> |
|
33 #include "../Inc/ActivePalette2BuildConfig.h" |
|
34 |
|
35 // --------------------------------------------------------------------------- |
|
36 // Sources |
|
37 SOURCEPATH ../Src |
|
38 |
|
39 #ifdef AP2_USE_3D_RENDERING |
|
40 SOURCE ActivePalette2HUI.cpp |
|
41 #endif |
|
42 |
|
43 #ifdef AP2_USE_2D_RENDERING |
|
44 SOURCE ActivePalette2BasicUI.cpp |
|
45 SOURCE ActivePalette2Tooltip.cpp |
|
46 SOURCE activepalette2tooltipfading.cpp |
|
47 SOURCE activepalette2tooltipfactory.cpp |
|
48 SOURCE ActivePalette2StylerFactory.cpp |
|
49 SOURCE ActivePalette2Styler.cpp |
|
50 SOURCE ActivePalette2OpaqueStyler.cpp |
|
51 SOURCE ActivePalette2SemiTransparentStyler.cpp |
|
52 SOURCE ActivePalette2SemiTransparentFadingStyler.cpp |
|
53 SOURCE ActivePalette2CheckerboardStyler.cpp |
|
54 #endif |
|
55 |
|
56 SOURCE ActivePalette2Factory.cpp |
|
57 SOURCE ActivePalette2EventData.cpp |
|
58 SOURCE ActivePalette2NavigationKeys.cpp |
|
59 SOURCE ActivePalette2DllMain.cpp |
|
60 SOURCE ActivePalette2GenericPlugin.cpp |
|
61 SOURCE ActivePalette2Item.cpp |
|
62 SOURCE ActivePalette2Model.cpp |
|
63 SOURCE activepalette2configuration.cpp |
|
64 SOURCE ActivePalette2Utils.cpp |
|
65 SOURCE ActivePalette2ItemVisible.cpp |
|
66 SOURCE CActivePalettePluginBase.cpp |
|
67 |
|
68 // --------------------------------------------------------------------------- |
|
69 // Headers |
|
70 USERINCLUDE ../Inc |
|
71 |
|
72 // --------------------------------------------------------------------------- |
|
73 // Libraries |
|
74 APP_LAYER_SYSTEMINCLUDE |
|
75 |
|
76 LIBRARY euser.lib cone.lib bitgdi.lib fbscli.lib ws32.lib gdi.lib flogger.lib |
|
77 LIBRARY bafl.lib avkon.lib egul.lib aknskins.lib aknicon.lib |
|
78 #ifdef AP2_USE_3D_RENDERING |
|
79 LIBRARY hitchcock.lib |
|
80 #endif |
|
81 #ifdef AP2_USE_GUILIB_RENDERING |
|
82 LIBRARY guilib.lib |
|
83 #endif |
|
84 |
|
85 // --------------------------------------------------------------------------- |
|
86 // Def-files |
|
87 #ifdef AP2_USE_3D_RENDERING |
|
88 DEFFILE ActivePalette2_2d_3d.def |
|
89 #else |
|
90 DEFFILE ActivePalette2_2d.def |
|
91 #endif |
|
92 |
|
93 // =========================================================================== |
|
94 // end of file |
|