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 |
#
|
44
|
17 |
# Version : %version: 29 %
|
30
|
18 |
|
|
19 |
|
|
20 |
TEMPLATE = lib
|
44
|
21 |
CONFIG += hb qt dll
|
30
|
22 |
TARGET = videoplayerengine
|
|
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)"
|
41
|
34 |
defBlock = \
|
|
35 |
"$${LITERAL_HASH}if defined(EABI)" \
|
|
36 |
"DEFFILE ../eabi/videoplayerengine.def" \
|
|
37 |
"$${LITERAL_HASH}else" \
|
|
38 |
"DEFFILE ../bwins/videoplayerengine.def" \
|
|
39 |
"$${LITERAL_HASH}endif"
|
44
|
40 |
MMP_RULES += defBlock SMPSAFE
|
30
|
41 |
}
|
|
42 |
|
|
43 |
INCLUDEPATH += ../../inc \
|
|
44 |
../inc
|
|
45 |
|
|
46 |
LIBS += -lmpxviewframeworkqt.dll \
|
|
47 |
-lxqplugins.dll \
|
36
|
48 |
-lmpxplaybackutility.dll \
|
30
|
49 |
-lmpxcollectionutility.dll \
|
|
50 |
-lmpxcollectionhelper.dll \
|
|
51 |
-lmpxcommon.dll \
|
|
52 |
-lplaybackhelper.dll \
|
|
53 |
-lvideoplaylistutility.dll \
|
|
54 |
-lservicehandler.dll \
|
|
55 |
-lxqservice.dll \
|
|
56 |
-lxqserviceutil.dll \
|
36
|
57 |
-lflogger.dll \
|
41
|
58 |
-lefsrv
|
30
|
59 |
|
36
|
60 |
DEPENDPATH += ../../inc ../inc inc
|
30
|
61 |
VPATH += src
|
|
62 |
|
|
63 |
HEADERS += videoplayerengine.h \
|
44
|
64 |
videoplaybackwrapper.h \
|
|
65 |
mpxvideoplayerappuiengine.h \
|
|
66 |
videoservices.h \
|
|
67 |
videoserviceplay.h \
|
|
68 |
videoserviceurifetch.h \
|
|
69 |
videoserviceview.h \
|
|
70 |
videoservicebrowse.h \
|
|
71 |
videoactivitystate.h
|
30
|
72 |
|
|
73 |
SOURCES += videoplayerengine.cpp \
|
44
|
74 |
videoplaybackwrapper.cpp \
|
30
|
75 |
mpxvideoplayerappuiengine.cpp \
|
|
76 |
videoservices.cpp \
|
|
77 |
videoserviceplay.cpp \
|
36
|
78 |
videoserviceurifetch.cpp \
|
|
79 |
videoserviceview.cpp \
|
40
|
80 |
videoservicebrowse.cpp \
|
|
81 |
videoactivitystate.cpp
|
30
|
82 |
|