taskswitcher/server/server.pro
changeset 116 305818acdca4
child 119 50e220be30d1
equal deleted inserted replaced
112:dbfb5e38438b 116:305818acdca4
       
     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 = app
       
    18 TARGET = hsrunningappmonitor
       
    19 CONFIG += hb mobility
       
    20 MOBILITY = serviceframework
       
    21 
       
    22 myrssrules = \
       
    23 "hidden = KAppIsHidden;"
       
    24 RSS_RULES += myrssrules
       
    25     
       
    26 INCLUDEPATH +=  inc \
       
    27                 ../inc \
       
    28                 ../../inc \
       
    29                 ../utils/inc \
       
    30                 ../backstepping/inc \
       
    31                 
       
    32 SOURCES +=  src/tsdataobservertask.cpp \
       
    33             src/tsdataprovidertask.cpp \
       
    34             src/tsrunningappserver.cpp \
       
    35             src/tsrunningappsession.cpp \
       
    36             src/main.cpp \
       
    37             src/tsdatalist.cpp \
       
    38             src/tsdatatask.cpp \
       
    39             src/tsscreenshotprovider.cpp \
       
    40             src/tsmodelitemkey.cpp \
       
    41             src/tsmodelitem.cpp \
       
    42             src/tsmodel.cpp \
       
    43             src/tsrunningappmodel.cpp \
       
    44             src/tsstorage.cpp \
       
    45             src/tsserializeddataprovider.cpp \
       
    46             src/tsservice.cpp \
       
    47             src/tsservicesprovider.cpp \
       
    48             src/tsservicesproviderconfig.cpp \
       
    49             src/tsserviceobserver.cpp \
       
    50             src/tsmodelitemkeymsg.cpp \
       
    51             ../utils/src/tsentrykey.cpp \
       
    52             ../utils/src/tsentrykeygenerator.cpp \
       
    53             ../utils/src/tsentry.cpp \
       
    54             ../utils/src/tsscreenshotmsg.cpp \
       
    55             ../utils/src/tsunregscreenshotmsg.cpp \
       
    56             ../utils/src/tsvisibilitymsg.cpp \
       
    57             ../utils/src/tswindowgroupsmonitor.cpp \
       
    58             ../utils/src/tswindowgroupsobserver.cpp \
       
    59             ../utils/src/tsresourcemanager.cpp \
       
    60             
       
    61 HEADERS +=  inc/tsdataobservertask.h \
       
    62             inc/tsdataprovider.h \
       
    63             inc/tsdataprovidertask.h \
       
    64             inc/tsrunningappserver.h \
       
    65             inc/tsrunningappsession.h \
       
    66             inc/tsdatalist.h \
       
    67             inc/tsdatastorage.h \
       
    68             inc/tsdatatask.h \
       
    69             inc/tsscreenshotprovider.h \            
       
    70             inc/tsmodelobserver.h \
       
    71             inc/tsmodelitemkey.h \
       
    72             inc/tsmodelitem.h \
       
    73             inc/tsmodel.h \
       
    74             inc/tsrunningappmodel.h \
       
    75             inc/tsstorage.h \
       
    76             inc/tsserializeddataprovider.h \
       
    77             inc/tsservice.h \
       
    78             inc/tsservicesprovider.h \
       
    79             inc/tsservicesproviderconfig.h \
       
    80             inc/tsserviceobserver.h \
       
    81             inc/tsmodelitemkeymsg.h \
       
    82             ../utils/inc/tsdataobserver.h \
       
    83             ../utils/inc/tsentry.h \
       
    84             ../utils/inc/tsentrykey.h \
       
    85             ../utils/inc/tsentrykeygenerator.h \
       
    86             ../utils/inc/tsutils.h \
       
    87             ../utils/inc/tsscreenshotmsg.h \
       
    88             ../utils/inc/tsunregscreenshotmsg.h \
       
    89             ../utils/inc/tsvisibilitymsg.h \
       
    90             ../utils/inc/tsresourcemanager.h \
       
    91             ../utils/inc/tswindowgroupsobserver.h \
       
    92 
       
    93 LIBS += -lxqutils \
       
    94         -ltsbackstepping \
       
    95         -laknicon \
       
    96         -lfbscli \          #for CFbsBitmap
       
    97         -lestor \           #for RDesReadStream
       
    98         -lxqutils \
       
    99         -lapgrfx \          #for CApaWindowGroupName
       
   100         -lws32 \            #for CWsGraphic
       
   101         -lapparc \          #for TApaAppInfo
       
   102         -lcaclient \        #for getApplicationIcon
       
   103         -lcone
       
   104 
       
   105 # tsimageutils and its dependencies
       
   106 LIBS += -ltsimageutils.lib \
       
   107         -lbitmaptransforms \
       
   108         -limageconversion \
       
   109         -lefsrv \
       
   110         
       
   111         
       
   112 symbian {
       
   113     TARGET.UID3 = 0x200267B0
       
   114     TARGET.CAPABILITY = All -TCB
       
   115 }
       
   116