29
|
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:
|
|
15 |
#
|
|
16 |
|
|
17 |
TEMPLATE = lib
|
|
18 |
TARGET = btuimodel
|
|
19 |
|
|
20 |
MOC_DIR = moc
|
|
21 |
DEFINES += BUILD_BTUIMODEL
|
|
22 |
|
|
23 |
INCLUDEPATH += . \
|
|
24 |
../inc
|
|
25 |
|
|
26 |
CONFIG += qt \
|
|
27 |
hb \
|
|
28 |
dll
|
|
29 |
HEADERS += btdevicedata.h \
|
|
30 |
btlocalsetting.h \
|
31
|
31 |
../inc/btsettingmodel.h \
|
|
32 |
../inc/btdevicemodel.h \
|
|
33 |
../inc/btuimodelsortfilter.h \
|
|
34 |
../inc/btuiutil.h
|
|
35 |
|
29
|
36 |
SOURCES += btdevicedata.cpp \
|
|
37 |
btlocalsetting.cpp \
|
31
|
38 |
btsettingmodel.cpp \
|
|
39 |
btdevicemodel.cpp \
|
|
40 |
btuimodelsortfilter.cpp
|
29
|
41 |
|
|
42 |
symbian: {
|
|
43 |
SYMBIAN_PLATFORMS = WINSCW \
|
|
44 |
ARMV5
|
|
45 |
|
|
46 |
TARGET.EPOCALLOWDLLDATA = 1
|
|
47 |
TARGET.UID3 = 0x2002434F
|
|
48 |
TARGET.CAPABILITY = CAP_GENERAL_DLL
|
|
49 |
|
|
50 |
INCLUDEPATH += $$MW_LAYER_SYSTEMINCLUDE
|
|
51 |
|
|
52 |
LIBS += -lbtengsettings \
|
|
53 |
-lbtserviceutil \
|
|
54 |
-lbtdevice \
|
|
55 |
-lbtmanclient \
|
|
56 |
-lesock \
|
|
57 |
-lbluetooth \
|
|
58 |
-lbtengdevman \
|
|
59 |
-lbtengconnman \
|
|
60 |
-lcentralrepository \
|
|
61 |
-lflogger
|
|
62 |
//MMP_RULES -= EXPORTUNFROZEN
|
|
63 |
}
|