author | hgs |
Fri, 25 Jun 2010 19:09:05 +0300 | |
changeset 34 | bc10a61bd7d3 |
parent 28 | 075425b8d9a4 |
child 38 | f8c3d4e6102c |
permissions | -rw-r--r-- |
24 | 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 |
||
17 |
||
18 |
# ########################################################## |
|
19 |
# Start of Flag definitions |
|
20 |
# Add or remove comments to disable or enable the features |
|
21 |
# ########################################################## |
|
22 |
||
23 |
# Use of some debugging controls that are not part of official UI spec |
|
24 |
# RADIOFLAGS += USE_DEBUGGING_CONTROLS |
|
25 |
||
26 |
# Flag to use dummy radio data read from XML file |
|
27 |
# RADIOFLAGS += USE_DUMMY_RADIO_DATA |
|
28 |
||
29 |
# Functional testing |
|
30 |
# RADIOFLAGS += SHOW_CALLSIGN_IN_ANY_REGION |
|
31 |
||
32 |
# Build flag to add EXPORTUNFROZEN to the pro file |
|
33 |
# RADIOFLAGS += USE_UNFROZEN_EXPORTS |
|
34 |
||
35 |
# Enables the assert macros |
|
36 |
# RADIOFLAGS += ENABLE_ASSERTS |
|
37 |
||
38 |
# ########################################################## |
|
39 |
# Start of Logging flag definitions |
|
40 |
# ########################################################## |
|
41 |
||
42 |
# Full logging flag that enables the full logging including also timestamps |
|
43 |
# Enabled by default in debug builds |
|
28
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
44 |
# CONFIG(debug, debug|release) : LOGGING_FLAGS += LOGGING_ENABLED |
24 | 45 |
|
46 |
# Uncomment to enable full logging in release builds |
|
28
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
47 |
LOGGING_FLAGS *= LOGGING_ENABLED |
24 | 48 |
|
49 |
# Timestamp logging flag that enables only timestamp logging |
|
50 |
# LOGGING_FLAGS += TIMESTAMP_LOGGING_ENABLED |
|
51 |
||
52 |
# Combines Ui and Engine logs by feeding UI traces to the engine logger |
|
53 |
LOGGING_FLAGS += COMBINE_WITH_ENGINE_LOGGER |
|
54 |
||
28
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
55 |
# Logging level |
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
56 |
# 1 - Normal level |
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
57 |
# 2 - More verbose level |
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
58 |
# 3 - Most verbose level |
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
59 |
LOGGING_FLAGS += LOGGING_LEVEL=1 |
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
60 |
|
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
61 |
# Select which radio component is being logged |
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
62 |
# 1 - Radio application |
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
63 |
# 2 - Radio homescreen widget |
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
64 |
LOGGING_FLAGS += LOGGED_COMPONENT=1 |
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
65 |
|
24 | 66 |
contains(LOGGING_FLAGS, TIMESTAMP_LOGGING_ENABLED)|contains(LOGGING_FLAGS, LOGGING_ENABLED) { |
67 |
||
68 |
# Writes debug prints to file if enabled |
|
69 |
#LOGGING_FLAGS += TRACE_TO_FILE |
|
70 |
||
71 |
# Settings for the log file name |
|
72 |
symbian:contains(LOGGING_FLAGS, TRACE_TO_FILE) { |
|
73 |
LOGGING_FLAGS += \"TRACE_OUTPUT_FILE=\\\"c:/logs/radio/fmradioui.txt\\\"\" |
|
74 |
LOGGING_FLAGS += FILTER_BY_LOGMARKER=true |
|
75 |
} |
|
76 |
} |
|
77 |
||
78 |
# Method for testing signal-slot connections |
|
79 |
# 1 - Log failed connection |
|
80 |
# 2 - Log failed connection and halt debugger |
|
81 |
LOGGING_FLAGS += CONNECT_TEST_MODE=2 |
|
82 |
||
28
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
83 |
win32: { |
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
84 |
LOGGING_FLAGS *= LOGGING_ENABLED # Logging is always enabled in Win32 environment |
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
85 |
RADIOFLAGS += VID_DEFAULT=0 |
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
86 |
} |
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
87 |
|
24 | 88 |
DEFINES += $$LOGGING_FLAGS |
89 |
||
90 |
# ########################################################## |
|
91 |
# End of Flag definitions |
|
92 |
# ########################################################## |
|
93 |
||
94 |
# Copy all radio flags to defines to define them as preprocessor macros |
|
95 |
DEFINES += $$RADIOFLAGS |
|
96 |
CONFIG += $$RADIOFLAGS |
|
97 |
CONFIG += $$LOGGING_FLAGS |
|
98 |
||
99 |
symbian: { |
|
28
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
100 |
DEFINES += SYMBIAN |
24 | 101 |
TARGET.EPOCALLOWDLLDATA = 1 |
102 |
TARGET.VID = VID_DEFAULT |
|
103 |
TARGET.CAPABILITY = CAP_GENERAL_DLL |
|
34 | 104 |
INCLUDEPATH += $$APP_LAYER_SYSTEMINCLUDE |
105 |
SYMBIAN_PLATFORMS = WINSCW ARMV5 |
|
106 |
MMP_RULES += SMPSAFE |
|
24 | 107 |
} |
108 |
||
34 | 109 |
# QT 4.7 changes the def file location so force them to stay where they are |
110 |
defFilePath = .. |
|
111 |
||
24 | 112 |
win32: { |
113 |
DEFINES += BUILD_WIN32 |
|
114 |
DESTDIR = ../bin |
|
115 |
LIBS += -L../bin |
|
116 |
INCLUDEPATH += ../radioenginewrapper/inc |
|
28
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
117 |
INCLUDEPATH += ../../internal/win32_stubs |
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
118 |
HEADERS += ../../internal/win32_stubs/qsysteminfo.h |
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
119 |
HEADERS += ../../internal/win32_stubs/xqserviceutil.h |
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
120 |
HEADERS += ../../internal/win32_stubs/xqserviceprovider.h |
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
121 |
SOURCES += ../../internal/win32_stubs/win32_stubs.cpp |
24 | 122 |
} |
123 |
||
124 |
USE_UNFROZEN_EXPORTS { |
|
28
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
125 |
symbian:MMP_RULES += "exportunfrozen" |
24 | 126 |
symbian:DEF_FILE = not_used.def |
127 |
} |
|
128 |
||
34 | 129 |
# Place generated files away from the source folder |
130 |
MOC_DIR = /epoc32/build/radioapp/$$TMP_DIR_NAME |
|
131 |
RCC_DIR = /epoc32/build/radioapp/$$TMP_DIR_NAME |
|
132 |
OBJECTS_DIR = /epoc32/build/radioapp/$$TMP_DIR_NAME |