ui/commandhandlers/commoncommandhandlers/commoncommandhandlers.pro
changeset 23 74c9f037fd5d
child 24 99ad1390cd33
equal deleted inserted replaced
5:f7f0874bfe7d 23:74c9f037fd5d
       
     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:
       
    15 #*
       
    16 #*/ 
       
    17 TEMPLATE = lib
       
    18 TARGET = glxcommoncommandhandlers
       
    19 DEPENDPATH += . inc src
       
    20 
       
    21 CONFIG += hb
       
    22 
       
    23 INCLUDEPATH += . \
       
    24             ../commandhandlerbase/inc \
       
    25             ../../../commonutilities/common/inc \
       
    26             ../commandexecutionwrapper/inc \
       
    27             ../../uiengine/medialists/inc \
       
    28             ../../../inc \
       
    29             ../../inc \
       
    30             ../../uiengine/model/listmodel/inc \
       
    31             ../../uiengine/medialistwrapper/inc 
       
    32 
       
    33 DEFINES += BUILD_COMMONCOMMANDHANDLERS
       
    34 
       
    35 symbian: { 
       
    36 INCLUDEPATH += $$APP_LAYER_SYSTEMINCLUDE
       
    37 TARGET.UID3 = 0x20000A0D
       
    38 TARGET.CAPABILITY = ALL -TCB 
       
    39 TARGET.EPOCALLOWDLLDATA = 1
       
    40 }
       
    41 
       
    42 LIBS += -lglxcommandhandlerbase.dll \
       
    43         -lmpxcollectionutility.dll \
       
    44         -lmpxcommon.dll \
       
    45         -lglxcommon.dll \
       
    46        	-lglxlistmodel.dll \
       
    47         -lglxmedialists.dll \
       
    48 	-lexiflib.dll \
       
    49 	-lfbscli.dll \
       
    50 	-lbafl.dll
       
    51 
       
    52 # Input
       
    53 HEADERS += inc/glxcommandhandlerdelete.h
       
    54 HEADERS += inc/glxcommandhandleraddtocontainer.h
       
    55 HEADERS += inc/glxcommandhandlernewmedia.h
       
    56 HEADERS += inc/glxcommandhandlerrotate.h
       
    57 
       
    58 SOURCES += src/glxcommandhandlerdelete.cpp
       
    59 SOURCES += src/glxcommandhandleraddtocontainer.cpp
       
    60 SOURCES += src/glxcommandhandlernewmedia.cpp
       
    61 SOURCES += src/glxcommandhandlerrotate.cpp
       
    62 
       
    63 DEFINES += QT_NO_DEBUG_OUTPUT QT_NO_WARNING_OUTPUT
       
    64