videoplayerapp/videoplayerengine/videoplayerengine.pro
changeset 15 cf5481c2bc0b
child 17 69946d1824c4
equal deleted inserted replaced
2:dec420019252 15:cf5481c2bc0b
       
     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#20 %
       
    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 \
       
    41 	-lmpxplaybackutility.dll \
       
    42         -lmpxcollectionutility.dll \
       
    43         -lmpxcollectionhelper.dll \    
       
    44         -lmpxcommon.dll \
       
    45         -lestor.dll  \
       
    46         -lfbscli.dll \
       
    47         -lplaybackhelper.dll \
       
    48         -lvideoplaylistutility.dll \
       
    49         -lservicehandler.dll \
       
    50         -lxqservice.dll \
       
    51         -lxqserviceutil.dll \
       
    52         -lflogger.dll
       
    53 
       
    54 DEPENDPATH += ../inc inc
       
    55 VPATH += src
       
    56 
       
    57 HEADERS += videoplayerengine.h \
       
    58           mpxvideoplaybackwrapper.h \
       
    59           mpxvideoplayerappuiengine.h \
       
    60           mpxvideoembeddedpdlhandler.h \
       
    61           videoservices.h \
       
    62           videoserviceplay.h \
       
    63           videoserviceurifetch.h
       
    64 
       
    65 SOURCES += videoplayerengine.cpp \
       
    66            mpxvideoplaybackwrapper.cpp \
       
    67            mpxvideoplayerappuiengine.cpp \
       
    68            mpxvideoembeddedpdlhandler.cpp \
       
    69            videoservices.cpp \
       
    70            videoserviceplay.cpp \
       
    71            videoserviceurifetch.cpp
       
    72