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 = lib
|
|
20 |
TARGET = radiouiengine
|
|
21 |
CONFIG += dll
|
|
22 |
DEFINES += BUILD_UI_ENGINE_DLL
|
|
23 |
win32:DESTDIR = ../bin
|
|
24 |
|
|
25 |
# Wrapper does not depend on QtGui or Orbit
|
|
26 |
QT = core gui network sql
|
|
27 |
CONFIG -= hb
|
|
28 |
CONFIG += mobility
|
|
29 |
MOBILITY = systeminfo
|
|
30 |
|
|
31 |
symbian: {
|
|
32 |
DEFINES += SYMBIAN
|
|
33 |
TARGET.EPOCALLOWDLLDATA = 1
|
|
34 |
TARGET.CAPABILITY = CAP_GENERAL_DLL
|
|
35 |
}
|
|
36 |
|
|
37 |
INCLUDEPATH += inc
|
|
38 |
INCLUDEPATH += ../radiopresetstorage/inc
|
|
39 |
INCLUDEPATH += ../radioenginewrapper/inc
|
|
40 |
INCLUDEPATH += ../commoninc
|
|
41 |
|
|
42 |
win32:LIBS += -L../bin
|
|
43 |
|
|
44 |
LIBS += -lradiopresetstorage
|
|
45 |
LIBS += -lradioenginewrapper
|
|
46 |
|
|
47 |
symbian:LIBS += -lxqservice
|
|
48 |
symbian:LIBS += -lxqserviceutil
|
|
49 |
symbian:LIBS += -lxqsettingsmanager
|
|
50 |
|
|
51 |
DEPENDPATH += $$INCLUDEPATH src
|
|
52 |
|
|
53 |
# $$_PRO_FILE_PWD_ points to the directory of the pro file
|
|
54 |
MOC_DIR = $$_PRO_FILE_PWD_/tmp
|
|
55 |
|
|
56 |
# Input
|
|
57 |
HEADERS += radiouiengineexport.h
|
|
58 |
HEADERS += radiostation.h
|
|
59 |
HEADERS += radiostationmodel.h
|
|
60 |
HEADERS += radiostationfiltermodel.h
|
|
61 |
HEADERS += radiouiengine.h
|
|
62 |
HEADERS += radiohistoryitem.h
|
|
63 |
HEADERS += radiohistorymodel.h
|
|
64 |
HEADERS += radiocarouselmodel.h
|
|
65 |
HEADERS += radioscannerengine.h
|
|
66 |
HEADERS += radioservicedef.h
|
|
67 |
HEADERS += radionotificationdata.h
|
|
68 |
|
|
69 |
symbian:HEADERS += radiocontrolservice.h
|
|
70 |
symbian:HEADERS += radiomonitorservice.h
|
|
71 |
win32:HEADERS += radiomonitorservice_win32.h
|
|
72 |
|
|
73 |
INTERNAL_HEADERS += radiostation_p.h
|
|
74 |
INTERNAL_HEADERS += radiohistoryitem_p.h
|
|
75 |
INTERNAL_HEADERS += radiohistorymodel_p.h
|
|
76 |
INTERNAL_HEADERS += radiocarouselmodel_p.h
|
|
77 |
INTERNAL_HEADERS += radiouiengine_p.h
|
|
78 |
INTERNAL_HEADERS += radiostationmodel_p.h
|
|
79 |
INTERNAL_HEADERS += radioscannerengine_p.h
|
|
80 |
|
|
81 |
win32:HEADERS += $$INTERNAL_HEADERS
|
|
82 |
|
|
83 |
SOURCES += radiostation.cpp
|
|
84 |
SOURCES += radiostation_p.cpp
|
|
85 |
SOURCES += radiostationmodel.cpp
|
|
86 |
SOURCES += radiostationmodel_p.cpp
|
|
87 |
SOURCES += radiostationfiltermodel.cpp
|
|
88 |
SOURCES += radiouiengine.cpp
|
|
89 |
SOURCES += radiouiengine_p.cpp
|
|
90 |
SOURCES += radiohistoryitem.cpp
|
|
91 |
SOURCES += radiohistoryitem_p.cpp
|
|
92 |
SOURCES += radiohistorymodel.cpp
|
|
93 |
SOURCES += radiohistorymodel_p.cpp
|
|
94 |
SOURCES += radiocarouselmodel.cpp
|
|
95 |
SOURCES += radiocarouselmodel_p.cpp
|
|
96 |
SOURCES += radioscannerengine.cpp
|
|
97 |
SOURCES += radioscannerengine_p.cpp
|
|
98 |
|
|
99 |
symbian:SOURCES += radiocontrolservice.cpp
|
|
100 |
symbian:SOURCES += radiomonitorservice.cpp
|
|
101 |
win32:SOURCES += radiomonitorservice_win32.cpp
|