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
|
44
|
18 |
CONFIG += hb qt ecomplugin mobility
|
|
19 |
TARGET =
|
30
|
20 |
|
|
21 |
symbian: {
|
|
22 |
TARGET.UID2 = 0x10009D8D
|
|
23 |
TARGET.UID3 = 0x200211FB
|
32
|
24 |
BLD_INF_RULES.prj_exports += \
|
|
25 |
"rom/videocollectionview.iby CORE_APP_LAYER_IBY_EXPORT_PATH(videocollectionview.iby)" \
|
|
26 |
"conf/videolistview.confml APP_LAYER_CONFML(videolistview.confml)" \
|
41
|
27 |
"conf/videoplayerservicelist.confml APP_LAYER_CONFML(videoplayerservicelist.confml)" \
|
32
|
28 |
"conf/videolistview_2002BC63.crml APP_LAYER_CRML(videolistview_2002BC63.crml)"
|
30
|
29 |
|
|
30 |
TARGET.CAPABILITY = ALL -TCB -DRM
|
|
31 |
|
|
32 |
# to enable resource access from Qt
|
|
33 |
TARGET.EPOCALLOWDLLDATA = 1
|
63
|
34 |
VERSION = 10.0
|
30
|
35 |
}
|
|
36 |
|
|
37 |
# mpx view plugin definitions:
|
|
38 |
# plugin interface name
|
|
39 |
SERVICE.INTERFACE_NAME = org.nokia.mmdt.QViewPlugin/1.0
|
|
40 |
|
|
41 |
# opaque data for resolving the correct plugin
|
|
42 |
SERVICE.CONFIGURATION = "<t>0x200211FC</t><p></p><i>EMPXViewPluginPriorityNormal</i><f>0x00000001</f>"
|
|
43 |
|
|
44 |
DEPENDPATH += .
|
|
45 |
INCLUDEPATH += . \
|
|
46 |
./inc
|
|
47 |
INCLUDEPATH += $$APP_LAYER_SYSTEMINCLUDE \
|
|
48 |
/epoc32/include/mw/hb/hbtools \
|
|
49 |
/epoc32/include/mw
|
|
50 |
|
|
51 |
INCLUDEPATH += ../videocollectionwrapper/inc \
|
|
52 |
../inc \
|
|
53 |
../../inc \
|
|
54 |
|
|
55 |
# Input
|
|
56 |
HEADERS += inc/videocollectionviewplugin.h \
|
|
57 |
inc/videolistview.h \
|
63
|
58 |
inc/videolisttoolbar.h \
|
|
59 |
inc/videolistmenu.h \
|
30
|
60 |
inc/videolistwidget.h \
|
|
61 |
inc/videohintwidget.h \
|
|
62 |
inc/videocollectionviewutils.h \
|
|
63 |
inc/videocollectionuiloader.h \
|
41
|
64 |
inc/videolistselectiondialog.h \
|
44
|
65 |
inc/videocollectioncenrepdefs.h \
|
55
|
66 |
inc/videooperatorservice.h \
|
|
67 |
inc/videooperatorservice_p.h
|
30
|
68 |
|
|
69 |
SOURCES += src/videocollectionviewplugin.cpp \
|
|
70 |
src/videolistview.cpp \
|
63
|
71 |
src/videolisttoolbar.cpp \
|
|
72 |
src/videolistmenu.cpp \
|
30
|
73 |
src/videolistwidget.cpp \
|
|
74 |
src/videohintwidget.cpp \
|
|
75 |
src/videocollectionviewutils.cpp \
|
|
76 |
src/videocollectionuiloader.cpp \
|
44
|
77 |
src/videolistselectiondialog.cpp \
|
55
|
78 |
src/videooperatorservice.cpp \
|
|
79 |
src/videooperatorservice_p.cpp
|
44
|
80 |
|
50
|
81 |
DOCML += data/collectionview.docml \
|
|
82 |
data/videolistselectiondialog.docml
|
44
|
83 |
|
30
|
84 |
RESOURCES += data/videocollectionview.qrc
|
|
85 |
|
|
86 |
LIBS += -lmpxviewframeworkqt.dll \
|
|
87 |
-lvideocollectionwrapper.dll \
|
|
88 |
-lxqserviceutil.dll \
|
36
|
89 |
-lvideoplayerengine.dll \
|
44
|
90 |
-lflogger.dll \
|
|
91 |
-lxqsettingsmanager.dll \
|
|
92 |
-lws32 \
|
|
93 |
-lapparc \
|
|
94 |
-lapgrfx \
|
|
95 |
-lcone
|
|
96 |
|
|
97 |
symbian: {
|
|
98 |
# Seems to be no way to get these on top of file
|
|
99 |
mmpBlock = "$${LITERAL_HASH}include <platform_paths.hrh>" \
|
|
100 |
"$${LITERAL_HASH}include <data_caging_paths.hrh>" \
|
|
101 |
"$${LITERAL_HASH}include <bldvariant.hrh>"
|
|
102 |
MMP_RULES += mmpBlock SMPSAFE
|
|
103 |
}
|