mpengine/mpengine.pro
author William Roberts <williamr@symbian.org>
Thu, 22 Jul 2010 16:32:33 +0100
branchGCC_SURGE
changeset 44 eff9df3d9c98
parent 41 ea59c434026a
child 43 0f32e550d9d8
child 48 af3740e3753f
permissions -rw-r--r--
Catchup to latest Symbian^4

#
# Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
# All rights reserved.
# This component and the accompanying materials are made available
# under the terms of "Eclipse Public License v1.0"
# which accompanies this distribution, and is available
# at the URL "http://www.eclipse.org/legal/epl-v10.html".
#
# Initial Contributors:
# Nokia Corporation - initial contribution.
#
# Contributors:
#
# Description: Project file for Music Player Engine.
#

TEMPLATE = lib
CONFIG += hb
TARGET = mpengine
symbian: { 
    TARGET.UID3 = 0x10207C93
    MMP_RULES += "DEFFILE mpengine.def"
    defFilePath = .
    TARGET.CAPABILITY = CAP_GENERAL_DLL
    TARGET.EPOCALLOWDLLDATA = 1
    BLD_INF_RULES.prj_exports += \
        "resources/nullsound.mp3 /epoc32/release/winscw/udeb/Z/system/data/nullsound.mp3" \
        "resources/nullsound.mp3 /epoc32/data/Z/system/data/nullsound.mp3"
}
DEFINES += BUILD_MPENGINE_LIB

INCLUDEPATH += . \
    	       inc \
    	       ../inc \
    	       ../mpserviceplugins/inc    	
INCLUDEPATH += $$APP_LAYER_SYSTEMINCLUDE 

LIBS += -lestor \
        -lmpxplaybackutility \
        -lmpxcollectionutility \
        -lmpxharvesterutility \
        -lmpxcommon \
        -lmpxcollectionhelper \
        -lremconcoreapi \
        -lremconinterfacebase \
        -lmpsettingsmanager \
        -lmpdata \
        -lxqserviceutil \
        -laudioequalizerutility \
        -lmediaclientaudio \
        -lefsrv

# Input
HEADERS += ../inc/mpenginefactory.h \
           ../inc/mpengine.h \
           ../inc/mpsongscanner.h \
           inc/mpmpxharvesterframeworkwrapper.h \
           inc/mpmpxharvesterframeworkwrapper_p.h \
           inc/mpmpxplaybackframeworkwrapper.h \
           inc/mpmpxplaybackframeworkwrapper_p.h \
           inc/mpmpxdetailsframeworkwrapper.h \
           inc/mpmpxdetailsframeworkwrapper_p.h \
           inc/mpmediakeyhandler.h \
           inc/mpmediakeyhandler_p.h\
           inc/mpmediakeyremconresponse.h \
           inc/mpmpxcollectionframeworkwrapper.h \
           inc/mpmpxisolatedcollectionhelper.h \
           inc/mpmpxcollectionframeworkwrapper_p.h \
           inc/mpaudioeffectsframeworkwrapper.h \
           inc/mpaudioeffectsframeworkwrapper_p.h \
           inc/mpequalizerframeworkwrapper.h \
           inc/mpequalizerframeworkwrapper_p.h

SOURCES += src/mpenginefactory.cpp \
           src/mpengine.cpp \
           src/mpsongscanner.cpp \
           src/mpmpxharvesterframeworkwrapper.cpp \
           src/mpmpxharvesterframeworkwrapper_p.cpp \
           src/mpmpxplaybackframeworkwrapper.cpp \
           src/mpmpxplaybackframeworkwrapper_p.cpp \
           src/mpmpxdetailsframeworkwrapper.cpp \
           src/mpmpxdetailsframeworkwrapper_p.cpp \
           src/mpmediakeyhandler.cpp \
           src/mpmediakeyhandler_p.cpp \
           src/mpmediakeyremconresponse.cpp \
           src/mpmpxcollectionframeworkwrapper.cpp \
           src/mpmpxisolatedcollectionhelper.cpp \
           src/mpmpxcollectionframeworkwrapper_p.cpp \
           src/mpaudioeffectsframeworkwrapper.cpp \
           src/mpaudioeffectsframeworkwrapper_p.cpp \
           src/mpequalizerframeworkwrapper.cpp \
           src/mpequalizerframeworkwrapper_p.cpp