author | hgs |
Thu, 08 Jul 2010 12:44:18 +0300 | |
changeset 36 | ba22309243a1 |
parent 34 | bc10a61bd7d3 |
child 37 | 451b2e1545b2 |
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 = enginewrapper |
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 = fmradioenginewrapper |
24 | 22 |
CONFIG += dll |
23 |
DEFINES += BUILD_WRAPPER_DLL |
|
24 |
||
28
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
25 |
symbian:TARGET.UID3 = 0x2002EAD8 |
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
26 |
|
24 | 27 |
USE_DUMMY_RADIO_DATA:QT += xml |
28 |
||
29 |
INCLUDEPATH += inc |
|
28
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
30 |
INCLUDEPATH += ../../common |
24 | 31 |
|
32 |
# Common headers |
|
33 |
HEADERS += radiowrapperexport.h |
|
34 |
HEADERS += radio_global.h |
|
35 |
HEADERS += radiologger.h |
|
36 |
HEADERS += radioenginewrapper.h |
|
37 |
HEADERS += radiosettingsif.h |
|
38 |
HEADERS += radiosettings.h |
|
39 |
HEADERS += radiostationhandlerif.h |
|
40 |
HEADERS += radioenginewrapperobserver.h |
|
41 |
||
42 |
INTERNAL_HEADERS += radiosettings_p.h |
|
43 |
||
44 |
#USE_DUMMY_RADIO_DATA:HEADERS += t_radiodataparser.h |
|
45 |
||
46 |
# Common sources |
|
47 |
SOURCES += radiosettings.cpp |
|
48 |
SOURCES += radiologger.cpp |
|
49 |
SOURCES += radioenginewrapperobserver.cpp |
|
50 |
||
51 |
# Symbian specific stuff |
|
52 |
symbian: { |
|
53 |
INCLUDEPATH += ../../radioengine/utils/api |
|
54 |
INCLUDEPATH += ../../radioengine/settings/api |
|
55 |
INCLUDEPATH += ../../radioengine/engine/api |
|
56 |
||
28
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
57 |
LIBS *= -lfmradioengineutils |
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
58 |
LIBS *= -lfmradioenginesettings |
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
59 |
LIBS *= -lfmradioengine |
24 | 60 |
|
34 | 61 |
HEADERS += radioenginehandler.h |
24 | 62 |
HEADERS += mradioenginehandlerobserver.h |
63 |
HEADERS += radiocontroleventlistener.h |
|
64 |
HEADERS += radiordslistener.h |
|
65 |
||
66 |
INTERNAL_HEADERS += radioenginewrapper_p.h |
|
67 |
||
68 |
SOURCES += radiosettings_p.cpp |
|
69 |
SOURCES += radioenginewrapper.cpp |
|
70 |
SOURCES += radioenginewrapper_p.cpp |
|
34 | 71 |
SOURCES += radioenginehandler.cpp |
24 | 72 |
SOURCES += radiocontroleventlistener.cpp |
73 |
SOURCES += radiordslistener.cpp |
|
74 |
} |
|
75 |
||
76 |
#USE_DUMMY_RADIO_DATA:SOURCES += t_radiodataparser.cpp |
|
77 |
||
78 |
# Win32 specific stuff |
|
79 |
win32: { |
|
80 |
INCLUDEPATH += inc/win32 |
|
81 |
||
82 |
HEADERS += radioenginewrapper_win32_p.h |
|
83 |
HEADERS += $$INTERNAL_HEADERS |
|
84 |
||
85 |
SOURCES += radiosettings_win32_p.cpp |
|
86 |
SOURCES += radioenginewrapper_win32.cpp |
|
87 |
SOURCES += radioenginewrapper_win32_p.cpp |
|
88 |
} |
|
89 |
||
90 |
DEPENDPATH += $$INCLUDEPATH src |