30
|
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 |
CONFIG += hb \
|
|
19 |
qt \
|
|
20 |
ecomplugin
|
|
21 |
|
|
22 |
|
|
23 |
symbian: {
|
|
24 |
TARGET.UID2 = 0x10009D8D
|
|
25 |
TARGET.UID3 = 0x200211FF
|
|
26 |
|
|
27 |
BLD_INF_RULES.prj_exports += "rom/videofiledetailsview.iby CORE_APP_LAYER_IBY_EXPORT_PATH(videofiledetailsview.iby)"
|
|
28 |
|
|
29 |
TARGET.CAPABILITY = ALL -TCB -DRM
|
|
30 |
|
|
31 |
TARGET.EPOCALLOWDLLDATA = 1
|
|
32 |
}
|
|
33 |
|
|
34 |
# mpx view plugin definitions:
|
|
35 |
# plugin interface name
|
|
36 |
SERVICE.INTERFACE_NAME = org.nokia.mmdt.QViewPlugin/1.0
|
|
37 |
|
|
38 |
# opaque data for resolving the correct plugin
|
|
39 |
SERVICE.CONFIGURATION = "<t>0x20021200</t><p></p><i>EMPXViewPluginPriorityNormal</i><f>0x00000001</f>"
|
|
40 |
|
|
41 |
DEPENDPATH += .
|
|
42 |
|
|
43 |
INCLUDEPATH += .
|
|
44 |
|
|
45 |
INCLUDEPATH += $$APP_LAYER_SYSTEMINCLUDE
|
|
46 |
|
|
47 |
INCLUDEPATH += $$OS_LAYER_STDCPP_SYSTEMINCLUDE \
|
|
48 |
/epoc32/include/mw/hb/hbtools \
|
|
49 |
/epoc32/include/mw
|
|
50 |
|
|
51 |
INCLUDEPATH += ../../inc \
|
|
52 |
../inc \
|
|
53 |
../videocollectionwrapper/inc
|
|
54 |
|
|
55 |
# Input
|
|
56 |
HEADERS += inc/videofiledetailsviewplugin.h \
|
34
|
57 |
inc/videodetailslabel.h
|
|
58 |
|
|
59 |
SOURCES += src/videofiledetailsviewplugin.cpp \
|
|
60 |
src/videodetailslabel.cpp
|
30
|
61 |
|
|
62 |
LIBS += -lmpxviewframeworkqt.dll \
|
|
63 |
-lvideocollectionwrapper.dll \
|
|
64 |
-lthumbnailmanagerqt.dll \
|
|
65 |
-lmediaclientvideodisplay.dll \
|
|
66 |
-lxqserviceutil.dll \
|
36
|
67 |
-lvideoplayerengine.dll \
|
|
68 |
-lshareui.dll \
|
|
69 |
-lflogger.dll
|
30
|
70 |
|
|
71 |
RESOURCES += data/videofiledetails.qrc
|