33
|
1 |
#
|
|
2 |
# Copyright (c) 2010 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: This is the project file defnition for deviceupdatesplugin.
|
|
15 |
#
|
|
16 |
#
|
|
17 |
|
|
18 |
|
|
19 |
|
|
20 |
TEMPLATE = lib
|
|
21 |
TARGET = deviceupdatesplugin
|
|
22 |
DEPENDPATH += . \
|
|
23 |
./inc \
|
|
24 |
./src
|
|
25 |
INCLUDEPATH += . \
|
|
26 |
./inc
|
|
27 |
|
|
28 |
CONFIG += hb plugin
|
|
29 |
|
|
30 |
LIBS += -lcpframework \
|
43
|
31 |
-lcentralrepository \
|
|
32 |
-lws32 \
|
|
33 |
-lapparc
|
33
|
34 |
|
|
35 |
# Input
|
|
36 |
HEADERS += deviceupdatesplugin.h \
|
|
37 |
deviceupdatesdata.h
|
|
38 |
|
|
39 |
SOURCES += deviceupdatesplugin.cpp \
|
|
40 |
deviceupdatesdata.cpp
|
|
41 |
|
|
42 |
symbian: {
|
|
43 |
TARGET.EPOCALLOWDLLDATA = 1
|
|
44 |
TARGET.UID3 = 0X2002DD04
|
|
45 |
|
|
46 |
LIBS += -ldeviceupdatesplugin
|
|
47 |
|
|
48 |
SYMBIAN_PLATFORMS = WINSCW \
|
|
49 |
ARMV5
|
|
50 |
|
|
51 |
}
|
|
52 |
|
|
53 |
symbian {
|
|
54 |
deploy.path = C:
|
|
55 |
headers.sources = qmakepluginstubs/deviceupdatesplugin.qtplugin
|
|
56 |
headers.path = /resource/qt/plugins/controlpanel
|
|
57 |
|
|
58 |
# This is for new exporting system coming in garden
|
|
59 |
for(header, headers.sources):BLD_INF_RULES.prj_exports += "./$$header $$deploy.path$$headers.path/$$basename(header)"
|
|
60 |
}
|
|
61 |
symbian: INCLUDEPATH += /orbit/hb/include/hbservices \
|
|
62 |
/orbit/hb/include/hbservices/private \
|
|
63 |
/orbit/hb/include/hbcore \
|
|
64 |
/orbit/hb/include/hbcore/private
|
|
65 |
|
|
66 |
TARGET.CAPABILITY = CAP_GENERAL_DLL
|
|
67 |
|
|
68 |
plugin.sources = deviceupdatesplugin.dll
|
|
69 |
plugin.path = \resource\qt\plugins\controlpanel
|
|
70 |
DEPLOYMENT += plugin
|
43
|
71 |
RESOURCES += ./resources/deviceupdatesplugin.qrc
|
33
|
72 |
|
|
73 |
# End of file --Don't remove this. |