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: Project file for building unit test component |
|
15 # |
|
16 # |
|
17 |
|
18 CONFIG += hb |
|
19 TEMPLATE = app |
|
20 TARGET = networkhandlingstarter |
|
21 TRANSLATIONS = telephone_cp.ts |
|
22 |
|
23 INCLUDEPATH += ./inc/ |
|
24 DEFINES += BUILD_NETWORKHANDLINGSTARTER |
|
25 MOC_DIR = moc |
|
26 |
|
27 symbian: { |
|
28 TARGET.CAPABILITY = ALL -TCB |
|
29 TARGET.EPOCALLOWDLLDATA = 1 |
|
30 TARGET.UID3 = 0x2002E67A |
|
31 INCLUDEPATH += $$APP_LAYER_SYSTEMINCLUDE |
|
32 LIBS += -lnetworkhandling |
|
33 LIBS += -lcentralrepository |
|
34 LIBS += -lxqservice |
|
35 LIBS += -lxqserviceutil |
|
36 LIBS += -lcpframework |
|
37 |
|
38 BLD_INF_RULES.prj_exports += \ |
|
39 "./rom/networkhandlingstarter.iby CORE_APP_LAYER_IBY_EXPORT_PATH(networkhandlingstarter.iby)" |
|
40 } |
|
41 |
|
42 HEADERS += ./inc/networkhandlingstarter.h |
|
43 HEADERS += ./inc/networkhandlingstarter_p.h |
|
44 HEADERS += ./inc/cnetworklistener.h |
|
45 |
|
46 SOURCES += ./src/main.cpp |
|
47 SOURCES += ./src/networkhandlingstarter.cpp |
|
48 SOURCES += ./src/networkhandlingstarter_p.cpp |
|
49 SOURCES += ./src/cnetworklistener.cpp |
|
50 |
|
51 CONFIG += service |
|
52 SERVICE.FILE = service_conf.xml |
|
53 SERVICE.OPTIONS = embeddable |
|
54 |
|