|
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 = app |
|
18 TARGET = btxqservice |
|
19 CONFIG += hb \ |
|
20 service |
|
21 MOC_DIR = moc |
|
22 OBJECTS_DIR = obj |
|
23 symbian: |
|
24 { |
|
25 TARGET.UID3 = 0xA89FB238 |
|
26 TARGET.CAPABILITY = ALL -TCB |
|
27 } |
|
28 LIBS += -lhbcore \ |
|
29 -lxqservice \ |
|
30 -lxqserviceutil \ |
|
31 -lbluetooth \ |
|
32 -lbtengsettings \ |
|
33 -lxqutils |
|
34 SERVICE.FILE = xml/btxqservice_conf.xml |
|
35 |
|
36 SERVICE.OPTIONS = embeddable \ |
|
37 hidden |
|
38 |
|
39 libFiles.path = "!:\sys\bin" |
|
40 DEPLOYMENT += libFiles |
|
41 |
|
42 HEADERS += inc/btxqaddrservice.h \ |
|
43 inc/btxqpowerservice.h \ |
|
44 inc/btxqdutservice.h \ |
|
45 inc/btxqsspdebugservice.h |
|
46 |
|
47 SOURCES += src/btxqaddrservice.cpp \ |
|
48 src/main.cpp \ |
|
49 src/btxqpowerservice.cpp \ |
|
50 src/btxqdutservice.cpp \ |
|
51 src/btxqsspdebugservice.cpp |
|
52 |
|
53 INCLUDEPATH += $$MW_LAYER_SYSTEMINCLUDE \ |
|
54 ../inc \ |
|
55 /epoc32/include/platform/mw/btservices |
|
56 |
|
57 BLD_INF_RULES.prj_exports += \ |
|
58 "$${LITERAL_HASH}include <platform_paths.hrh>" \ |
|
59 "inc/btxqserviceapi.h MW_LAYER_PLATFORM_EXPORT_PATH(btxqserviceapi.h)" \ |
|
60 "rom/btxqservice.iby CORE_MW_LAYER_IBY_EXPORT_PATH(btxqservice.iby)" |
|
61 |
|
62 |