author | Pat Downey <patd@symbian.org> |
Wed, 23 Jun 2010 17:20:24 +0100 | |
changeset 29 | 29ba091146f4 |
parent 28 | 075425b8d9a4 |
child 32 | 189d20c34778 |
child 34 | bc10a61bd7d3 |
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 |
include(../buildflags.pri) |
|
18 |
||
19 |
TEMPLATE = app |
|
28
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
20 |
TARGET = fmradio |
24 | 21 |
TRANSLATIONS += fmradio.ts |
28
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
22 |
ICON = resources/qtg_large_radio.svg |
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
23 |
#ICON = qtg_large_radio.svg |
24 | 24 |
|
25 |
symbian: { |
|
26 |
TARGET.CAPABILITY = CAP_APPLICATION MultimediaDD |
|
28
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
27 |
TARGET.UID3 = 0x2002FF4E |
24 | 28 |
TARGET.EPOCSTACKSIZE = 0x14000 |
29 |
TARGET.EPOCHEAPSIZE = 0x020000 0x2400000 |
|
30 |
} |
|
31 |
||
32 |
CONFIG += hb service |
|
28
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
33 |
CONFIG += mobility |
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
34 |
MOBILITY = systeminfo |
24 | 35 |
|
36 |
# Service provider specific configuration. |
|
37 |
SERVICE.FILE = resources/service_conf.xml |
|
38 |
||
39 |
INCLUDEPATH += . inc |
|
28
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
40 |
INCLUDEPATH += ../../common |
24 | 41 |
INCLUDEPATH += ../radiouiengine/inc |
42 |
INCLUDEPATH += ../radiowidgets/inc |
|
43 |
||
28
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
44 |
LIBS += -lfmradiouiengine |
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
45 |
LIBS += -lfmradiowidgets |
24 | 46 |
|
47 |
# UI does not normally depend on the wrapper, but it does on two special cases |
|
48 |
# 1. Logging is enabled. The logger is in the wrapper module |
|
49 |
# 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
|
50 |
LOGGING_ENABLED:LIBS += -lfmradioenginewrapper |
24 | 51 |
|
52 |
# Sources |
|
53 |
HEADERS += radioapplication.h |
|
54 |
||
55 |
SOURCES += main.cpp |
|
56 |
SOURCES += radioapplication.cpp |
|
57 |
||
58 |
# Win32 specific stuff |
|
59 |
win32: { |
|
28
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
60 |
LIBS += -lfmradioenginewrapper |
24 | 61 |
|
62 |
HEADERS += testwindow_win32.h |
|
63 |
||
64 |
SOURCES += testwindow_win32.cpp |
|
65 |
||
66 |
DEFINES += HB_RESOURCES_DIR=\"\\\"$${HB_RESOURCES_DIR}\\\"\" |
|
67 |
} |
|
68 |
||
69 |
DEPENDPATH += $$INCLUDEPATH src |