32
|
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 |
TEMPLATE = app
|
|
17 |
TARGET = obexhighway
|
|
18 |
CONFIG += hb \
|
|
19 |
service
|
|
20 |
|
|
21 |
MOC_DIR = moc
|
|
22 |
OBJECTS_DIR = obj
|
|
23 |
|
|
24 |
HEADERS += inc/btsendserviceinterface.h \
|
|
25 |
inc/btsssendlisthandler.h \
|
|
26 |
inc/btsendingservicedebug.h \
|
|
27 |
inc/btsendserviceprovider.h
|
|
28 |
|
|
29 |
SOURCES += src/main.cpp \
|
|
30 |
src/btsendserviceinterface.cpp \
|
|
31 |
src/btsssendlisthandler.cpp \
|
|
32 |
src/btsendserviceprovider.cpp
|
|
33 |
|
|
34 |
|
|
35 |
INCLUDEPATH += . ../../inc
|
|
36 |
|
|
37 |
SERVICE.FILE = xml/obexhighway_conf.xml
|
|
38 |
SERVICE.OPTIONS = embeddable \
|
|
39 |
hidden
|
|
40 |
|
|
41 |
LIBS += -lhbcore \
|
|
42 |
-lxqservice \
|
|
43 |
-lxqserviceutil \
|
|
44 |
-lobexservicesendutils \
|
|
45 |
-lbtfeatures \
|
|
46 |
-lflogger \
|
|
47 |
-lxqutils
|
|
48 |
|
|
49 |
symbian {
|
|
50 |
TARGET.UID3 = 0x2002EA5A
|
|
51 |
TARGET.CAPABILITY = All -TCB
|
|
52 |
}
|
|
53 |
BLD_INF_RULES.prj_exports += \
|
|
54 |
"$${LITERAL_HASH}include <platform_paths.hrh>" \
|
|
55 |
"./rom/obexhighway.iby CORE_MW_LAYER_IBY_EXPORT_PATH(obexhighway.iby)"
|