ui/viewmanagement/statehandler/statehandler.pro
branchRCL_3
changeset 59 8e5f6eea9c9f
equal deleted inserted replaced
57:ea65f74e6de4 59:8e5f6eea9c9f
       
     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 = glxstatehandler
       
    19 DEPENDPATH += . inc src
       
    20 
       
    21 CONFIG += hb
       
    22 CONFIG += mobility
       
    23 MOBILITY += sensors
       
    24 
       
    25 INCLUDEPATH += . \
       
    26             ../../inc \
       
    27             ../../../inc \
       
    28             ../../../loggers/loggerqt/inc \
       
    29             ../../../commonutilities/common/inc \
       
    30             ../../uiengine/medialists/inc \
       
    31             ../../uiengine/medialistwrapper/inc \
       
    32             ../../uiengine/model/mediamodel/inc \
       
    33             ../../uiengine/model/listmodel/inc \
       
    34             ../viewmanager/inc \
       
    35             ../../commandhandlers/commandhandlerbase/inc \
       
    36             ../../commandhandlers/commoncommandhandlers/inc
       
    37             
       
    38 DEFINES += BUILD_STATEMANAGER
       
    39 
       
    40 symbian: { 
       
    41 INCLUDEPATH += $$APP_LAYER_SYSTEMINCLUDE
       
    42 TARGET.UID3 = 0x20000A07
       
    43 TARGET.CAPABILITY = ALL -TCB 
       
    44 TARGET.EPOCALLOWDLLDATA = 1
       
    45 MMP_RULES += SMPSAFE
       
    46 }
       
    47 
       
    48 LIBS += -lglxviewmanager.dll \
       
    49         -lglxmediamodel.dll \
       
    50         -lglxlistmodel.dll \
       
    51         -lglxexternalutility.dll \
       
    52         -lglxloggerqt.dll \
       
    53         -lglxcommoncommandhandlers.dll \
       
    54         -lglxlogging.dll \
       
    55         -lglxcommon.dll \
       
    56 	-lglximageviewermanager.dll
       
    57 
       
    58 
       
    59 # Input
       
    60 HEADERS += inc/glxbasestate.h \
       
    61            inc/glxfullscreenstate.h \
       
    62            inc/glxdetailstate.h \
       
    63            inc/glxgridstate.h \
       
    64            inc/glxslideshowsettingsstate.h \
       
    65            inc/glxliststate.h \
       
    66            inc/glxstatemanager.h \
       
    67            inc/glxslideshowstate.h \
       
    68            inc/glxactionhandler.h \
       
    69            inc/glxcommandhandlerfactory.h \
       
    70            inc/glxtnobserver.h \
       
    71            inc/glxorientationsensorfilter.h
       
    72 
       
    73 SOURCES += src/glxbasestate.cpp \
       
    74            src/glxfullscreenstate.cpp \
       
    75            src/glxdetailstate.cpp \
       
    76            src/glxgridstate.cpp \
       
    77            src/glxslideshowsettingsstate.cpp \
       
    78            src/glxliststate.cpp \
       
    79            src/glxstatemanager.cpp \
       
    80            src/glxslideshowstate.cpp \
       
    81            src/glxactionhandler.cpp \
       
    82            src/glxcommandhandlerfactory.cpp \
       
    83            src/glxtnobserver.cpp \
       
    84            src/glxorientationsensorfilter.cpp
       
    85 
       
    86 DEFINES += QT_NO_DEBUG_OUTPUT QT_NO_WARNING_OUTPUT
       
    87 
       
    88 defBlock = \      
       
    89 "$${LITERAL_HASH}if defined(EABI)" \
       
    90 "DEFFILE  ../eabi/glxstatehandler.def" \
       
    91 	 "$${LITERAL_HASH}else" \
       
    92 	 "DEFFILE  ../bwins/glxstatehandler.def" \
       
    93              "$${LITERAL_HASH}endif"
       
    94 	
       
    95 MMP_RULES += defBlock
       
    96