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 = radiopresetstorage
|
|
21 |
CONFIG += dll
|
|
22 |
DEFINES += BUILD_PRESET_STORAGE_DLL
|
|
23 |
|
|
24 |
INCLUDEPATH += inc
|
|
25 |
|
|
26 |
COMPILE_WITH_NEW_PRESET_UTILITY {
|
|
27 |
INCLUDEPATH += /epoc32/include/newfmpresetutility
|
|
28 |
symbian:LIBS += -lpresetutility
|
|
29 |
} else {
|
|
30 |
symbian:LIBS += -lfmpresetutility
|
|
31 |
}
|
|
32 |
|
|
33 |
DEPENDPATH += $$INCLUDEPATH src
|
|
34 |
|
|
35 |
# Input
|
|
36 |
HEADERS += radiopresetstorage.h
|
|
37 |
HEADERS += radiostationif.h
|
|
38 |
HEADERS += radiopresetstorageexport.h
|
|
39 |
|
|
40 |
# Symbian specific stuff
|
|
41 |
symbian: {
|
|
42 |
INTERNAL_HEADERS += radiopresetstorage_p.h
|
|
43 |
SOURCES += radiopresetstorage.cpp
|
|
44 |
}
|
|
45 |
|
|
46 |
# Win32 specific stuff
|
|
47 |
win32: {
|
|
48 |
HEADERS += radiopresetstorage_win32_p.h
|
|
49 |
SOURCES += radiopresetstorage_win32.cpp
|
|
50 |
}
|