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 |
TARGET =
|
|
23 |
symbian: {
|
|
24 |
TARGET.UID2 = 0x10009D8D
|
|
25 |
TARGET.UID3 = 0x200211FB
|
|
26 |
BLD_INF_RULES.prj_exports += "rom/videocollectionview.iby CORE_APP_LAYER_IBY_EXPORT_PATH(videocollectionview.iby)"
|
|
27 |
|
|
28 |
TARGET.CAPABILITY = ALL -TCB -DRM
|
|
29 |
|
|
30 |
# to enable resource access from Qt
|
|
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>0x200211FC</t><p></p><i>EMPXViewPluginPriorityNormal</i><f>0x00000001</f>"
|
|
40 |
|
|
41 |
DEPENDPATH += .
|
|
42 |
INCLUDEPATH += . \
|
|
43 |
./inc
|
|
44 |
INCLUDEPATH += $$APP_LAYER_SYSTEMINCLUDE \
|
|
45 |
/epoc32/include/mw/hb/hbtools \
|
|
46 |
/epoc32/include/mw
|
|
47 |
|
|
48 |
INCLUDEPATH += ../videocollectionwrapper/inc \
|
|
49 |
../../videoplayerapp/videoplayerengine/inc \
|
|
50 |
../../videoplayerapp/inc \
|
|
51 |
../inc \
|
|
52 |
../../inc \
|
|
53 |
|
|
54 |
# Input
|
|
55 |
HEADERS += inc/videocollectionviewplugin.h \
|
|
56 |
inc/videolistview.h \
|
|
57 |
inc/videolistwidget.h \
|
|
58 |
inc/videohintwidget.h \
|
|
59 |
inc/videocollectionviewutils.h \
|
|
60 |
inc/videocollectionuiloader.h \
|
|
61 |
inc/videolistselectiondialog.h
|
|
62 |
|
|
63 |
SOURCES += src/videocollectionviewplugin.cpp \
|
|
64 |
src/videolistview.cpp \
|
|
65 |
src/videolistwidget.cpp \
|
|
66 |
src/videohintwidget.cpp \
|
|
67 |
src/videocollectionviewutils.cpp \
|
|
68 |
src/videocollectionuiloader.cpp \
|
|
69 |
src/videolistselectiondialog.cpp
|
|
70 |
|
|
71 |
RESOURCES += data/videocollectionview.qrc
|
|
72 |
|
|
73 |
LIBS += -lmpxviewframeworkqt.dll \
|
|
74 |
-lvideocollectionwrapper.dll \
|
|
75 |
-lcentralrepository.dll \
|
|
76 |
-lxqserviceutil.dll \
|
|
77 |
-lvideoplayerengine.dll
|
|
78 |
|
|
79 |
# Seems to be no way to get these on top of file
|
|
80 |
mmpBlock = "$${LITERAL_HASH}include <platform_paths.hrh>" \
|
|
81 |
"$${LITERAL_HASH}include <data_caging_paths.hrh>" \
|
|
82 |
"$${LITERAL_HASH}include <bldvariant.hrh>"
|
|
83 |
MMP_RULES += mmpBlock
|