author | hgs |
Thu, 08 Jul 2010 12:44:18 +0300 | |
changeset 36 | ba22309243a1 |
parent 34 | bc10a61bd7d3 |
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 |
||
34 | 17 |
TMP_DIR_NAME = app |
24 | 18 |
include(../buildflags.pri) |
19 |
||
20 |
TEMPLATE = app |
|
28
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
21 |
TARGET = fmradio |
24 | 22 |
TRANSLATIONS += fmradio.ts |
23 |
||
24 |
symbian: { |
|
25 |
TARGET.CAPABILITY = CAP_APPLICATION MultimediaDD |
|
28
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
26 |
TARGET.UID3 = 0x2002FF4E |
24 | 27 |
TARGET.EPOCSTACKSIZE = 0x14000 |
28 |
TARGET.EPOCHEAPSIZE = 0x020000 0x2400000 |
|
34 | 29 |
SKINICON = qtg_large_radio |
30 |
ICON = resources/qtg_large_radio.svg # Fallback icon in case theme doesn't have one |
|
31 |
||
32 |
LIBS += -lxqserviceutil |
|
33 |
||
34 |
BLD_INF_RULES.prj_exports += "resources/fmradio.docml /epoc32/release/winscw/udeb/z/resource/hb/splashml/fmradio.docml" \ |
|
35 |
"resources/fmradio.splashml /epoc32/release/winscw/udeb/z/resource/hb/splashml/fmradio.splashml" \ |
|
36 |
"resources/fmradio.docml /epoc32/data/z/resource/hb/splashml/fmradio.docml" \ |
|
37 |
"resources/fmradio.splashml /epoc32/data/z/resource/hb/splashml/fmradio.splashml" |
|
24 | 38 |
} |
39 |
||
40 |
CONFIG += hb service |
|
28
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
41 |
CONFIG += mobility |
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
42 |
MOBILITY = systeminfo |
24 | 43 |
|
44 |
# Service provider specific configuration. |
|
45 |
SERVICE.FILE = resources/service_conf.xml |
|
46 |
||
47 |
INCLUDEPATH += . inc |
|
28
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
48 |
INCLUDEPATH += ../../common |
24 | 49 |
INCLUDEPATH += ../radiouiengine/inc |
50 |
INCLUDEPATH += ../radiowidgets/inc |
|
51 |
||
28
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
52 |
LIBS += -lfmradiouiengine |
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
53 |
LIBS += -lfmradiowidgets |
24 | 54 |
|
55 |
# UI does not normally depend on the wrapper, but it does on two special cases |
|
56 |
# 1. Logging is enabled. The logger is in the wrapper module |
|
57 |
# 2. Radio is built for win32 target. The test window needs to access the wrapper |
|
28
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
58 |
LOGGING_ENABLED:LIBS += -lfmradioenginewrapper |
24 | 59 |
|
60 |
# Sources |
|
61 |
HEADERS += radioapplication.h |
|
62 |
||
63 |
SOURCES += main.cpp |
|
64 |
SOURCES += radioapplication.cpp |
|
65 |
||
66 |
# Win32 specific stuff |
|
67 |
win32: { |
|
28
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
68 |
LIBS += -lfmradioenginewrapper |
24 | 69 |
|
70 |
HEADERS += testwindow_win32.h |
|
71 |
||
72 |
SOURCES += testwindow_win32.cpp |
|
73 |
||
74 |
DEFINES += HB_RESOURCES_DIR=\"\\\"$${HB_RESOURCES_DIR}\\\"\" |
|
75 |
} |
|
76 |
||
77 |
DEPENDPATH += $$INCLUDEPATH src |