37
|
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 Phoneui component
|
|
15 |
#
|
|
16 |
#
|
|
17 |
|
|
18 |
|
|
19 |
TEMPLATE = app
|
|
20 |
TARGET = phoneui
|
|
21 |
CONFIG += hb svg
|
|
22 |
RESOURCES = ./phoneui2.qrc
|
|
23 |
|
|
24 |
TRANSLATIONS = telephone.ts
|
|
25 |
|
|
26 |
symbian {
|
|
27 |
TARGET.CAPABILITY = ALL -TCB
|
|
28 |
TARGET.UID3 = 0x100058B3
|
|
29 |
TARGET.VID = VID_DEFAULT
|
|
30 |
TARGET.EPOCHEAPSIZE = 0x1000 0xA00000
|
|
31 |
DEFINES += FT_SYMBIAN_INTEGRATION
|
|
32 |
|
|
33 |
INCLUDEPATH += $$APP_LAYER_SYSTEMINCLUDE
|
|
34 |
INCLUDEPATH += ../../inc \
|
|
35 |
../phoneui/inc \
|
|
36 |
../phoneuicontrol/inc \
|
|
37 |
../phoneuiutils/inc \
|
|
38 |
../phoneuiqtviewadapter/inc \
|
|
39 |
../phoneuiview2/inc
|
|
40 |
|
|
41 |
LIBS += -lphoneengine \
|
|
42 |
-lphoneuiutils \
|
|
43 |
-lphoneuicontrol \
|
|
44 |
-lphoneuiqtviewadapter \
|
|
45 |
-lphoneuiqtview \
|
|
46 |
-lFeatMgr
|
|
47 |
|
|
48 |
BLD_INF_RULES.prj_exports += \
|
|
49 |
"$${LITERAL_HASH}include <platform_paths.hrh>" \
|
|
50 |
"./rom/phoneui.iby CORE_APP_LAYER_IBY_EXPORT_PATH(phoneui.iby)" \
|
|
51 |
"./rom/phoneuiresources.iby LANGUAGE_APP_LAYER_IBY_EXPORT_PATH(phoneuiresources.iby)"
|
|
52 |
|
|
53 |
RSS_RULES += "hidden = KAppIsHidden;"
|
|
54 |
}
|
|
55 |
|
|
56 |
HEADERS += ./inc/hbphonemainwindow.h \
|
|
57 |
./inc/phoneuikeyeventadapter.h \
|
|
58 |
./inc/phoneuicommandadapter.h \
|
|
59 |
./inc/phoneuihousehold.h \
|
|
60 |
./inc/phoneuihousehold_p.h
|
|
61 |
|
|
62 |
SOURCES += ./src/main.cpp \
|
|
63 |
./src/phoneuikeyeventadapter.cpp \
|
|
64 |
./src/phoneuicommandadapter.cpp \
|
|
65 |
./src/hbphonemainwindow.cpp \
|
|
66 |
./src/phoneuihousehold.cpp \
|
|
67 |
./src/phoneuihousehold_p.cpp
|
|
68 |
|