author | hgs |
Thu, 08 Jul 2010 12:44:18 +0300 | |
changeset 36 | ba22309243a1 |
parent 34 | bc10a61bd7d3 |
child 57 | 21be958eb3ce |
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 = uiengine |
24 | 18 |
include(../buildflags.pri) |
19 |
||
20 |
TEMPLATE = lib |
|
28
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
21 |
TARGET = fmradiouiengine |
24 | 22 |
CONFIG += dll |
23 |
DEFINES += BUILD_UI_ENGINE_DLL |
|
28
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
24 |
|
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
25 |
symbian:TARGET.UID3 = 0x2002EADA |
24 | 26 |
|
34 | 27 |
# UI engine does not depend on Orbit |
24 | 28 |
QT = core gui network sql |
29 |
CONFIG -= hb |
|
30 |
||
31 |
INCLUDEPATH += inc |
|
32 |
INCLUDEPATH += ../radiopresetstorage/inc |
|
33 |
INCLUDEPATH += ../radioenginewrapper/inc |
|
28
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
34 |
INCLUDEPATH += ../../common |
24 | 35 |
|
28
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
36 |
LIBS += -lfmradiopresetstorage |
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
37 |
LIBS += -lfmradioenginewrapper |
24 | 38 |
|
39 |
symbian:LIBS += -lxqservice |
|
40 |
symbian:LIBS += -lxqserviceutil |
|
41 |
symbian:LIBS += -lxqsettingsmanager |
|
42 |
||
43 |
DEPENDPATH += $$INCLUDEPATH src |
|
44 |
||
45 |
# Input |
|
46 |
HEADERS += radiouiengineexport.h |
|
47 |
HEADERS += radiostation.h |
|
48 |
HEADERS += radiostationmodel.h |
|
49 |
HEADERS += radiouiengine.h |
|
50 |
HEADERS += radiohistoryitem.h |
|
34 | 51 |
HEADERS += radiohistorydatabase.h |
24 | 52 |
HEADERS += radiohistorymodel.h |
53 |
HEADERS += radioscannerengine.h |
|
54 |
HEADERS += radioservicedef.h |
|
55 |
HEADERS += radionotificationdata.h |
|
28
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
56 |
HEADERS += radiogenrelocalizer.h |
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
57 |
HEADERS += radiocontrolservice.h |
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
58 |
HEADERS += radiomonitorservice.h |
24 | 59 |
|
60 |
INTERNAL_HEADERS += radiostation_p.h |
|
61 |
INTERNAL_HEADERS += radiohistoryitem_p.h |
|
62 |
INTERNAL_HEADERS += radiohistorymodel_p.h |
|
63 |
INTERNAL_HEADERS += radiouiengine_p.h |
|
64 |
INTERNAL_HEADERS += radiostationmodel_p.h |
|
65 |
INTERNAL_HEADERS += radioscannerengine_p.h |
|
66 |
||
67 |
win32:HEADERS += $$INTERNAL_HEADERS |
|
68 |
||
69 |
SOURCES += radiostation.cpp |
|
70 |
SOURCES += radiostation_p.cpp |
|
71 |
SOURCES += radiostationmodel.cpp |
|
72 |
SOURCES += radiostationmodel_p.cpp |
|
73 |
SOURCES += radiouiengine.cpp |
|
74 |
SOURCES += radiouiengine_p.cpp |
|
75 |
SOURCES += radiohistoryitem.cpp |
|
76 |
SOURCES += radiohistoryitem_p.cpp |
|
34 | 77 |
SOURCES += radiohistorydatabase.cpp |
24 | 78 |
SOURCES += radiohistorymodel.cpp |
79 |
SOURCES += radiohistorymodel_p.cpp |
|
80 |
SOURCES += radioscannerengine.cpp |
|
81 |
SOURCES += radioscannerengine_p.cpp |
|
28
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
82 |
SOURCES += radiocontrolservice.cpp |
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
83 |
SOURCES += radiomonitorservice.cpp |