31
|
1 |
#
|
|
2 |
# Copyright (c) 2009 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:
|
|
15 |
#
|
|
16 |
|
|
17 |
TEMPLATE = lib
|
|
18 |
TARGET = cpframework
|
|
19 |
|
|
20 |
include ( ../common.pri )
|
32
|
21 |
include ( ../logger/logger.pri)
|
31
|
22 |
include ( ./cpframework.pri )
|
|
23 |
include ( ../../controlpanel_plat/inc/controlpanel_plat.pri )
|
|
24 |
|
36
|
25 |
RESOURCES += cpframework.qrc
|
|
26 |
|
31
|
27 |
symbian: {
|
|
28 |
TARGET.UID3 = 0x20025FDA
|
|
29 |
}
|
|
30 |
|
|
31 |
CONFIG += Hb xml
|
32
|
32 |
DEFINES += BUILD_CP_FRAMEWORK BUILD_LOGGER_DLL
|
31
|
33 |
|
|
34 |
symbian: {
|
|
35 |
# export headers to mw
|
|
36 |
EXPORT_PLATFORM_HEADERS += \
|
|
37 |
../../controlpanel_plat/inc/cpglobal.h \
|
36
|
38 |
../../controlpanel_plat/inc/cpbasepath.h \
|
32
|
39 |
../../controlpanel_plat/inc/cpplugininterface.h \
|
31
|
40 |
../../controlpanel_plat/inc/cppluginplatinterface.h \
|
32
|
41 |
../../controlpanel_plat/inc/cppluginloader.h \
|
31
|
42 |
../../controlpanel_plat/inc/cppluginlauncher.h \
|
|
43 |
../../controlpanel_plat/inc/cpbasesettingview.h \
|
|
44 |
../../controlpanel_plat/inc/cpitemdatahelper.h \
|
|
45 |
../../controlpanel_plat/inc/cpsettingformitemdata.h \
|
|
46 |
../../controlpanel_plat/inc/cpsettingformentryitemdata.h \
|
32
|
47 |
../../controlpanel_plat/inc/cpsettingformentryitemdataimpl.h \
|
36
|
48 |
../../controlpanel_plat/inc/cppluginutility.h \
|
|
49 |
../../controlpanel_plat/inc/cplauncherinterface.h
|
31
|
50 |
|
|
51 |
headers.sources = $$EXPORT_PLATFORM_HEADERS
|
|
52 |
for(header, headers.sources):BLD_INF_RULES.prj_exports += "./$$header $$MW_LAYER_PLATFORM_EXPORT_PATH($$basename(header))"
|
36
|
53 |
|
|
54 |
|
|
55 |
# export widgetml files
|
|
56 |
widgetmls.path = C:/resource/controlpanel/widgetml
|
|
57 |
widgetmls.sources += widgetml/cpdataformlistentryviewitem.css \
|
|
58 |
widgetml/cpdataformlistentryviewitem.widgetml
|
|
59 |
for(widgetmlfile, widgetmls.sources):BLD_INF_RULES.prj_exports += "./$$widgetmlfile $$widgetmls.path/$$basename(widgetmlfile)"
|
|
60 |
|
|
61 |
# export icon files
|
|
62 |
icons.path = C:/resource/controlpanel/icon
|
|
63 |
icons.sources += icon/qgn_prop_set_default_sub.svg
|
|
64 |
for(iconfile, icons.sources):BLD_INF_RULES.prj_exports += "./$$iconfile $$icons.path/$$basename(iconfile)"
|
|
65 |
|
31
|
66 |
}
|
32
|
67 |
include (../logger/logger_export.pri)
|
31
|
68 |
|