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 dll
|
30
|
19 |
TARGET =
|
44
|
20 |
DEFINES += BUILD_VIDEOCOLLECTION_DLL
|
|
21 |
|
30
|
22 |
symbian: {
|
|
23 |
TARGET.UID2 = 0x1000008D
|
|
24 |
TARGET.UID3 = 0x200211FD
|
|
25 |
BLD_INF_RULES.prj_exports += "rom/videocollectionwrapper.iby CORE_APP_LAYER_IBY_EXPORT_PATH(videocollectionwrapper.iby)"
|
|
26 |
TARGET.CAPABILITY = CAP_GENERAL_DLL
|
|
27 |
TARGET.EPOCALLOWDLLDATA = 1
|
41
|
28 |
defBlock = \
|
|
29 |
"$${LITERAL_HASH}if defined(EABI)" \
|
|
30 |
"DEFFILE ../eabi/videocollectionwrapper.def" \
|
|
31 |
"$${LITERAL_HASH}else" \
|
|
32 |
"DEFFILE ../bwins/videocollectionwrapper.def" \
|
|
33 |
"$${LITERAL_HASH}endif"
|
44
|
34 |
MMP_RULES += defBlock SMPSAFE
|
30
|
35 |
}
|
|
36 |
|
|
37 |
DEPENDPATH += . inc src
|
|
38 |
|
|
39 |
INCLUDEPATH += .
|
|
40 |
|
|
41 |
INCLUDEPATH += $$APP_LAYER_SYSTEMINCLUDE
|
|
42 |
|
|
43 |
INCLUDEPATH += $$OS_LAYER_STDCPP_SYSTEMINCLUDE
|
|
44 |
|
|
45 |
INCLUDEPATH += ../inc \
|
|
46 |
/epoc32/include/mw/hb/hbtools
|
|
47 |
|
|
48 |
# Input
|
|
49 |
HEADERS += inc/videodatasignalreceiver.h \
|
|
50 |
inc/videocollectionclient.h \
|
|
51 |
inc/videocollectionlistener.h \
|
|
52 |
inc/videocollectionwrapper.h \
|
|
53 |
inc/videocollectionwrapper_p.h \
|
|
54 |
inc/videolistdatamodel.h \
|
|
55 |
inc/videolistdatamodel_p.h \
|
|
56 |
inc/videothumbnaildata.h \
|
|
57 |
inc/videothumbnaildata_p.h \
|
34
|
58 |
inc/videothumbnailfetcher.h \
|
30
|
59 |
inc/videocollectionutils.h \
|
58
|
60 |
inc/videoproxymodelgeneric.h \
|
|
61 |
inc/videoproxymodelallvideos.h \
|
|
62 |
inc/videoproxymodelcollections.h \
|
|
63 |
inc/videoproxymodelcontent.h \
|
30
|
64 |
inc/videodatacontainer.h \
|
34
|
65 |
inc/videodeleteworker.h \
|
30
|
66 |
../inc/videocollectionexport.h
|
|
67 |
|
|
68 |
SOURCES += src/videocollectionclient.cpp \
|
|
69 |
src/videocollectionlistener.cpp \
|
|
70 |
src/videocollectionwrapper.cpp \
|
|
71 |
src/videocollectionwrapper_p.cpp \
|
|
72 |
src/videolistdatamodel.cpp \
|
|
73 |
src/videolistdatamodel_p.cpp \
|
|
74 |
src/videothumbnaildata.cpp \
|
|
75 |
src/videothumbnaildata_p.cpp \
|
34
|
76 |
src/videothumbnailfetcher.cpp \
|
30
|
77 |
src/videocollectionutils.cpp \
|
58
|
78 |
src/videoproxymodelgeneric.cpp \
|
|
79 |
src/videoproxymodelallvideos.cpp \
|
|
80 |
src/videoproxymodelcollections.cpp \
|
|
81 |
src/videoproxymodelcontent.cpp \
|
34
|
82 |
src/videodeleteworker.cpp \
|
30
|
83 |
src/videodatacontainer.cpp
|
|
84 |
|
|
85 |
LIBS += -lmpxcommon.dll \
|
|
86 |
-lmpxcollectionutility.dll \
|
|
87 |
-lthumbnailmanagerqt.dll \
|
|
88 |
-lestor.dll \
|
36
|
89 |
-lcentralrepository.dll \
|
|
90 |
-lflogger.dll
|