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: Project file for building Videoplayer components
|
|
15 |
#
|
|
16 |
#
|
36
|
17 |
# Version : %version: da1mmcf#24 %
|
30
|
18 |
|
|
19 |
|
|
20 |
TEMPLATE = lib
|
|
21 |
TARGET = videoplayerengine
|
|
22 |
CONFIG += hb qt dll
|
|
23 |
DEFINES += BUILD_VIDEOPLAYERAPP_DLL
|
|
24 |
|
|
25 |
symbian:
|
|
26 |
{
|
|
27 |
TARGET.CAPABILITY = ALL -DRM -TCB
|
|
28 |
TARGET.EPOCALLOWDLLDATA = 1
|
|
29 |
TARGET.UID3 = 0x20024337
|
|
30 |
TARGET.EPOCHEAPSIZE = 0x20000 0x1600000
|
|
31 |
INCLUDEPATH += $$MW_LAYER_SYSTEMINCLUDE \
|
|
32 |
$$APP_LAYER_SYSTEMINCLUDE SYSTEMINCLUDE
|
|
33 |
BLD_INF_RULES.prj_exports += "rom/videoplayerengine.iby CORE_APP_LAYER_IBY_EXPORT_PATH(videoplayerengine.iby)"
|
|
34 |
}
|
|
35 |
|
|
36 |
INCLUDEPATH += ../../inc \
|
|
37 |
../inc
|
|
38 |
|
|
39 |
LIBS += -lmpxviewframeworkqt.dll \
|
|
40 |
-lxqplugins.dll \
|
36
|
41 |
-lmpxplaybackutility.dll \
|
30
|
42 |
-lmpxcollectionutility.dll \
|
|
43 |
-lmpxcollectionhelper.dll \
|
|
44 |
-lmpxcommon.dll \
|
|
45 |
-lplaybackhelper.dll \
|
|
46 |
-lvideoplaylistutility.dll \
|
|
47 |
-lservicehandler.dll \
|
|
48 |
-lxqservice.dll \
|
|
49 |
-lxqserviceutil.dll \
|
36
|
50 |
-lflogger.dll \
|
|
51 |
-lefsrv.dll
|
30
|
52 |
|
36
|
53 |
DEPENDPATH += ../../inc ../inc inc
|
30
|
54 |
VPATH += src
|
|
55 |
|
|
56 |
HEADERS += videoplayerengine.h \
|
|
57 |
mpxvideoplaybackwrapper.h \
|
|
58 |
mpxvideoplayerappuiengine.h \
|
|
59 |
videoservices.h \
|
|
60 |
videoserviceplay.h \
|
36
|
61 |
videoserviceurifetch.h \
|
|
62 |
videoserviceview.h \
|
|
63 |
videoservicebrowse.h
|
30
|
64 |
|
|
65 |
SOURCES += videoplayerengine.cpp \
|
|
66 |
mpxvideoplaybackwrapper.cpp \
|
|
67 |
mpxvideoplayerappuiengine.cpp \
|
|
68 |
videoservices.cpp \
|
|
69 |
videoserviceplay.cpp \
|
36
|
70 |
videoserviceurifetch.cpp \
|
|
71 |
videoserviceview.cpp \
|
|
72 |
videoservicebrowse.cpp
|
30
|
73 |
|