29
|
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 = btcpplugin
|
|
19 |
DEPENDPATH += .
|
|
20 |
INCLUDEPATH += . ../inc/
|
|
21 |
|
|
22 |
CONFIG += qt hb plugin
|
|
23 |
LIBS += -lcpframework -lbtuimodel -lbtuidelegate
|
|
24 |
|
|
25 |
MOC_DIR = moc
|
|
26 |
OBJECTS_DIR = obj
|
|
27 |
|
67
|
28 |
TRANSLATIONS = btviews.ts
|
|
29 |
# Removed btdialogs.ts and btindimenu.ts since only one .ts file allowed for a .pro file. btdialogs.ts moved to btuidelegate.pro
|
29
|
30 |
RESOURCES += btcpplugin.qrc
|
|
31 |
|
|
32 |
# Input
|
42
|
33 |
HEADERS += btcpuidevicedetailsview.h\
|
57
|
34 |
btcpuimaingridviewitem.h \
|
42
|
35 |
btcpuisearchlistviewitem.h \
|
|
36 |
btcpplugin.h \
|
|
37 |
btcpuibaseview.h \
|
|
38 |
btcpuimainview.h \
|
|
39 |
btcpuisearchview.h \
|
|
40 |
btcpuideviceview.h \
|
|
41 |
btcpuisettingitem.h \
|
|
42 |
btuiviewutil.h \
|
57
|
43 |
btcpuidevicedetail.h \
|
|
44 |
btcpuiviewmgr.h
|
|
45 |
|
42
|
46 |
SOURCES += btcpuidevicedetailsview.cpp \
|
57
|
47 |
btcpuimaingridviewitem.cpp \
|
42
|
48 |
btcpuisearchlistviewitem.cpp \
|
|
49 |
btcpplugin.cpp \
|
|
50 |
btcpuibaseview.cpp \
|
|
51 |
btcpuimainview.cpp \
|
|
52 |
btcpuisearchview.cpp \
|
|
53 |
btcpuideviceview.cpp \
|
|
54 |
btcpuisettingitem.cpp \
|
|
55 |
btcpuidevicedetail.cpp
|
|
56 |
symbian: {
|
29
|
57 |
DEFINES += PLUGINUID3=0x2002434E
|
|
58 |
TARGET.UID3 = 0x2002434E
|
|
59 |
TARGET.CAPABILITY = ALL -TCB
|
|
60 |
|
|
61 |
TARGET.EPOCALLOWDLLDATA = 1
|
|
62 |
INCLUDEPATH += $$MW_LAYER_SYSTEMINCLUDE
|
42
|
63 |
|
|
64 |
LIBS += -lbtdevice \
|
|
65 |
-lbtdevsettingframework
|
29
|
66 |
|
|
67 |
PLUGIN_STUB_PATH = /resource/qt/plugins/controlpanel
|
|
68 |
|
|
69 |
deploy.path = C:
|
|
70 |
pluginstub.sources = $${TARGET}.dll
|
|
71 |
pluginstub.path = $$PLUGIN_STUB_PATH
|
|
72 |
DEPLOYMENT += pluginstub
|
|
73 |
|
|
74 |
qtplugins.path = $$PLUGIN_STUB_PATH
|
|
75 |
qtplugins.sources += qmakepluginstubs/$${TARGET}.qtplugin
|
|
76 |
|
|
77 |
for(qtplugin, qtplugins.sources):BLD_INF_RULES.prj_exports += "./$$qtplugin $$deploy.path$$qtplugins.path/$$basename(qtplugin)"
|
|
78 |
}
|
|
79 |
|