33
|
1 |
#
|
|
2 |
# Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
|
3 |
|
|
4 |
#
|
|
5 |
# All rights reserved.
|
|
6 |
# This component and the accompanying materials are made available
|
|
7 |
# under the terms of "Eclipse Public License v1.0"
|
|
8 |
# which accompanies this distribution, and is available
|
|
9 |
# at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
|
10 |
#
|
|
11 |
# Initial Contributors:
|
|
12 |
# Nokia Corporation - initial contribution.
|
|
13 |
#
|
|
14 |
# Contributors:
|
|
15 |
#
|
|
16 |
# Description:
|
|
17 |
#
|
|
18 |
#
|
|
19 |
|
|
20 |
TEMPLATE = app
|
|
21 |
CONFIG += hb \
|
|
22 |
qt \
|
|
23 |
service
|
|
24 |
TARGET = deviceupdatesqtsp
|
|
25 |
symbian: {
|
|
26 |
|
|
27 |
TARGET.CAPABILITY = CAP_APPLICATION
|
|
28 |
TARGET.EPOCALLOWDLLDATA = 1
|
|
29 |
TARGET.UID3 = 0x1028339D
|
|
30 |
BLD_INF_RULES.prj_exports += "$${LITERAL_HASH}include <platform_paths.hrh>"
|
|
31 |
BLD_INF_RULES.prj_exports += "./rom/deviceupdatesqtsp.iby CORE_APP_LAYER_IBY_EXPORT_PATH(deviceupdatesqtsp.iby)"
|
|
32 |
BLD_INF_RULES.prj_exports += "./rom/deviceupdatesqtsp_resources.iby LANGUAGE_APP_LAYER_IBY_EXPORT_PATH(deviceupdatesqtsp_resources.iby)"
|
|
33 |
LIBS += -lws32 \
|
|
34 |
apparc.lib
|
|
35 |
}
|
|
36 |
symbian: INCLUDEPATH += /orbit/hb/include/hbservices \
|
|
37 |
/orbit/hb/include/hbservices/private \
|
|
38 |
/orbit/hb/include/hbcore \
|
|
39 |
/orbit/hb/include/hbcore/private
|
|
40 |
INCLUDEPATH += .
|
|
41 |
INCLUDEPATH += $$APP_LAYER_SYSTEMINCLUDE
|
|
42 |
|
|
43 |
HEADERS += ./inc/DmTelServiceHandler.h
|
|
44 |
|
|
45 |
SOURCES += ./src/main.cpp
|
|
46 |
SOURCES += ./src/DmTelServiceHandler.cpp
|
|
47 |
|
|
48 |
LIBS += -lhbcore \
|
|
49 |
-lxqservice \
|
|
50 |
-lxqserviceutil
|
|
51 |
|
|
52 |
SERVICE.FILE += ./resources/service_conf.xml
|
|
53 |
SERVICE.OPTIONS = embeddable
|
|
54 |
SERVICE.OPTIONS += hidden
|
|
55 |
|
|
56 |
libFiles.sources = xqservice.dll
|
|
57 |
libFiles.path = "!:\sys\bin"
|
|
58 |
DEPLOYMENT += libFiles
|
|
59 |
|
|
60 |
MOC_DIR = moc
|