musicservices/musicservices.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 Services.
       
    15 #
       
    16 
       
    17 TEMPLATE = lib
       
    18 CONFIG += hb
       
    19 TARGET = musicservices
       
    20 symbian: { 
       
    21     TARGET.UID3 = 0x10207C69
       
    22     MMP_RULES += "DEFFILE musicservices.def" SMPSAFE
       
    23     defFilePath = .
       
    24     TARGET.CAPABILITY = CAP_GENERAL_DLL
       
    25     TARGET.EPOCALLOWDLLDATA = 1
       
    26 }
       
    27 DEFINES += BUILD_MUSICSERVICES_LIB
       
    28 
       
    29 INCLUDEPATH += . \
       
    30                inc \
       
    31     	       ../inc
       
    32 INCLUDEPATH += $$APP_LAYER_SYSTEMINCLUDE 
       
    33 
       
    34 LIBS += -lxqservice \
       
    35         -lxqserviceutil
       
    36 
       
    37 # Input
       
    38 HEADERS += inc/musicservices.h \
       
    39            inc/getmusicservice.h \
       
    40            inc/playmusicservice.h 
       
    41 
       
    42 SOURCES += src/musicservices.cpp \
       
    43            src/getmusicservice.cpp \
       
    44            src/playmusicservice.cpp
       
    45