mpdata/mpdata.pro
branchRCL_3
changeset 25 14979e23cb5e
equal deleted inserted replaced
24:26a1709b9fec 25:14979e23cb5e
       
     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 Music Player Data.
       
    15 #
       
    16 
       
    17 TEMPLATE = lib
       
    18 CONFIG += hb
       
    19 TARGET = mpdata
       
    20 symbian: { 
       
    21     TARGET.UID3 = 0x10207C95
       
    22     MMP_RULES += "DEFFILE mpdata.def" SMPSAFE
       
    23     defFilePath = .
       
    24     TARGET.CAPABILITY = CAP_GENERAL_DLL
       
    25     TARGET.EPOCALLOWDLLDATA = 1
       
    26 }
       
    27 DEFINES += BUILD_MPDATA_LIB
       
    28 
       
    29 INCLUDEPATH += . \
       
    30     	       inc \
       
    31     	       ../inc
       
    32 INCLUDEPATH += $$APP_LAYER_SYSTEMINCLUDE
       
    33 INCLUDEPATH += $$MW_LAYER_PUBLIC_EXPORT_PATH(hgwidgets)
       
    34 
       
    35 LIBS += -lestor \
       
    36         -lmpxcommon \
       
    37         -lthumbnailmanagerqt
       
    38 
       
    39 # Input
       
    40 HEADERS += ../inc/mpmpxcollectiondata.h \
       
    41            inc/mpmpxcollectiondata_p.h \
       
    42            ../inc/mpcollectiondatamodel.h \
       
    43            ../inc/mpcollectiontbonelistdatamodel.h \
       
    44     	   inc/mpcollectionalbumartmanager.h \
       
    45     	   ../inc/mpplaybackdata.h \
       
    46     	   ../inc/mpsongdata.h \
       
    47     	   inc/mpsongdata_p.h
       
    48 
       
    49 SOURCES += src/mpmpxcollectiondata.cpp \
       
    50            src/mpmpxcollectiondata_p.cpp \
       
    51            src/mpcollectiondatamodel.cpp \
       
    52            src/mpcollectiontbonelistdatamodel.cpp \
       
    53     	   src/mpcollectionalbumartmanager.cpp \
       
    54            src/mpplaybackdata.cpp \
       
    55            src/mpsongdata.cpp \
       
    56            src/mpsongdata_p.cpp
       
    57