37
|
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 |
TEMPLATE = lib
|
|
18 |
TARGET = msgaudiofetcher
|
|
19 |
DEFINES += BUILD_MSGAUDIOFETCHER_DLL
|
|
20 |
|
|
21 |
DEPENDPATH += . \
|
|
22 |
inc \
|
|
23 |
src
|
|
24 |
|
|
25 |
INCLUDEPATH += ../inc
|
|
26 |
INCLUDEPATH += ../../../inc
|
|
27 |
INCLUDEPATH += $$APP_LAYER_SYSTEMINCLUDE
|
|
28 |
|
|
29 |
CONFIG += hb
|
|
30 |
|
|
31 |
TARGET.UID3 = 0x2001FE67
|
|
32 |
TARGET.CAPABILITY = All -TCB
|
|
33 |
TARGET.EPOCALLOWDLLDATA = 1
|
|
34 |
|
|
35 |
# Platforms
|
|
36 |
SYMBIAN_PLATFORMS = WINSCW \
|
|
37 |
ARMV5
|
|
38 |
|
|
39 |
# Build.inf rules
|
|
40 |
BLD_INF_RULES.prj_exports += "$${LITERAL_HASH}include <platform_paths.hrh>" \
|
|
41 |
"rom/msgaudiofetcher.iby CORE_APP_LAYER_IBY_EXPORT_PATH(msgaudiofetcher.iby)"
|
|
42 |
|
|
43 |
# Input
|
|
44 |
HEADERS += msgaudioselectionengine.h \
|
|
45 |
msgaudiofetchermodel.h \
|
56
|
46 |
../inc/msgaudiofetcherdialog.h \
|
|
47 |
msgaudiopreview.h
|
37
|
48 |
|
|
49 |
SOURCES += msgaudioselectionengine.cpp \
|
|
50 |
msgaudiofetchermodel.cpp \
|
56
|
51 |
msgaudiofetcherdialog.cpp \
|
37
|
52 |
msgaudiopreview.cpp
|
|
53 |
|
|
54 |
defBlock = \
|
|
55 |
"$${LITERAL_HASH}if defined(EABI)" \
|
|
56 |
"DEFFILE ../eabi/msgaudiofetcher.def" \
|
|
57 |
"$${LITERAL_HASH}else" \
|
|
58 |
"DEFFILE ../bwins/msgaudiofetcher.def" \
|
|
59 |
"$${LITERAL_HASH}endif"
|
|
60 |
|
|
61 |
MMP_RULES += defBlock
|
|
62 |
|
|
63 |
# Libs
|
56
|
64 |
LIBS += -lxqutils \
|
37
|
65 |
-lmdeclient \
|
|
66 |
-lcentralrepository \
|
|
67 |
-lProfileEng \
|
|
68 |
-lmediaclientaudio \
|
|
69 |
-lDrmAudioPlayUtility \
|
|
70 |
-lDRMCommon \
|
|
71 |
-lDrmRights \
|
|
72 |
-lDrmHelper \
|
|
73 |
-ldrmutility \
|
|
74 |
-lapmime \
|
|
75 |
-lecom \
|
|
76 |
-lxqservice \
|
|
77 |
-lapgrfx
|