51
|
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 |
|
|
18 |
TEMPLATE = app
|
|
19 |
TARGET = PerfMon
|
|
20 |
DEPENDPATH += .
|
|
21 |
INCLUDEPATH += inc
|
|
22 |
|
|
23 |
load(hb.prf)
|
|
24 |
symbian:CONFIG -= symbian_i18n
|
|
25 |
|
|
26 |
HEADERS += inc/application.h \
|
|
27 |
inc/mainwindow.h \
|
|
28 |
inc/mainview.h \
|
|
29 |
inc/datacontainer.h \
|
|
30 |
inc/valuedatacontainer.h \
|
|
31 |
inc/graphdatacontainer.h \
|
|
32 |
inc/settingsview.h \
|
52
|
33 |
inc/datapopup.h \
|
51
|
34 |
inc/enginewrapper.h
|
|
35 |
|
|
36 |
SOURCES += src/main.cpp \
|
|
37 |
src/application.cpp \
|
|
38 |
src/mainwindow.cpp \
|
|
39 |
src/mainview.cpp \
|
|
40 |
src/valuedatacontainer.cpp \
|
|
41 |
src/graphdatacontainer.cpp \
|
|
42 |
src/settingsview.cpp \
|
52
|
43 |
src/datapopup.cpp \
|
51
|
44 |
src/enginewrapper.cpp
|
|
45 |
|
|
46 |
RESOURCES +=
|
|
47 |
|
|
48 |
symbian: {
|
|
49 |
INCLUDEPATH += $$APP_LAYER_SYSTEMINCLUDE
|
|
50 |
INCLUDEPATH += ../../../engine/inc
|
|
51 |
HEADERS += ../../../engine/inc/perfmon_engine.h \
|
|
52 |
../../../engine/inc/perfmon_powerlistener.h
|
|
53 |
|
|
54 |
SOURCES += ../../../engine/src/perfmon_engine.cpp \
|
|
55 |
../../../engine/src/perfmon_powerlistener.cpp
|
|
56 |
|
|
57 |
LIBS += -lestor \
|
|
58 |
-lbafl \
|
|
59 |
-lefsrv \
|
|
60 |
-lavkon \
|
|
61 |
-lapparc \
|
|
62 |
-lapgrfx \
|
|
63 |
-lgdi \
|
|
64 |
-lcone \
|
|
65 |
-lcentralrepository \
|
|
66 |
-lHWRMPowerClient
|
|
67 |
|
|
68 |
TARGET.CAPABILITY = WriteDeviceData
|
|
69 |
|
|
70 |
TARGET.UID2 = 0x100039CE
|
|
71 |
TARGET.UID3 = 0x20011385
|
|
72 |
TARGET.SID = 0x20011385
|
|
73 |
TARGET.VID = 0x101FB657 // Nokia
|
|
74 |
|
|
75 |
TARGET.EPOCHEAPSIZE = 0x10000 0x2000000 // Min 64Kb, Max 32Mb
|
|
76 |
|
|
77 |
ICON = ../../../icons/qgn_menu_perfmon.svg
|
|
78 |
|
|
79 |
RSS_RULES += "group_name = \"RnD Tools\"";
|
|
80 |
}
|