|
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 # |
|
17 # Version : %version: da1mmcf#31 % |
|
18 |
|
19 |
|
20 TEMPLATE = lib |
|
21 CONFIG += hb qt dll |
|
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)" |
|
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" |
|
40 MMP_RULES += defBlock SMPSAFE |
|
41 } |
|
42 |
|
43 INCLUDEPATH += ../../inc \ |
|
44 ../inc |
|
45 |
|
46 LIBS += -lmpxviewframeworkqt.dll \ |
|
47 -lxqplugins.dll \ |
|
48 -lmpxplaybackutility.dll \ |
|
49 -lmpxcollectionutility.dll \ |
|
50 -lmpxcollectionhelper.dll \ |
|
51 -lmpxcommon.dll \ |
|
52 -lplaybackhelper.dll \ |
|
53 -lvideoplaylistutility.dll \ |
|
54 -lservicehandler.dll \ |
|
55 -lxqservice.dll \ |
|
56 -lxqserviceutil.dll \ |
|
57 -lflogger.dll \ |
|
58 -lefsrv \ |
|
59 -lcommonengine.dll |
|
60 |
|
61 DEPENDPATH += ../../inc ../inc inc |
|
62 VPATH += src |
|
63 |
|
64 HEADERS += videoplayerengine.h \ |
|
65 videoplaybackwrapper.h \ |
|
66 mpxvideoplayerappuiengine.h \ |
|
67 videoservices.h \ |
|
68 videoserviceplay.h \ |
|
69 videoserviceurifetch.h \ |
|
70 videoserviceview.h \ |
|
71 videoservicebrowse.h \ |
|
72 videoactivitystate.h \ |
|
73 videoserviceuri.h |
|
74 |
|
75 SOURCES += videoplayerengine.cpp \ |
|
76 videoplaybackwrapper.cpp \ |
|
77 mpxvideoplayerappuiengine.cpp \ |
|
78 videoservices.cpp \ |
|
79 videoserviceplay.cpp \ |
|
80 videoserviceurifetch.cpp \ |
|
81 videoserviceview.cpp \ |
|
82 videoservicebrowse.cpp \ |
|
83 videoactivitystate.cpp \ |
|
84 videoserviceuri.cpp |
|
85 |