taskswitcher/server/server.pro
changeset 117 c63ee96dbe5f
equal deleted inserted replaced
115:3ab5c078b490 117:c63ee96dbe5f
       
     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/hsdataobservertask.cpp \
       
    33             src/hsdataprovidertask.cpp \
       
    34             src/hsrunningappserver.cpp \
       
    35             src/hsrunningappsession.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             
       
    58 
       
    59 HEADERS +=  inc/hsdataobservertask.h \
       
    60             inc/tsdataprovider.h \
       
    61             inc/hsdataprovidertask.h \
       
    62             inc/hsrunningappserver.h \
       
    63             inc/hsrunningappsession.h \
       
    64             inc/tsdatalist.h \
       
    65             inc/tsdatastorage.h \
       
    66             inc/tsdatatask.h \
       
    67             inc/tsscreenshotprovider.h \            
       
    68             inc/tsmodelobserver.h \
       
    69             inc/tsmodelitemkey.h \
       
    70             inc/tsmodelitem.h \
       
    71             inc/tsmodel.h \
       
    72             inc/tsrunningappmodel.h \
       
    73             inc/tsstorage.h \
       
    74             inc/tsserializeddataprovider.h \
       
    75             inc/tsservice.h \
       
    76             inc/tsservicesprovider.h \
       
    77             inc/tsservicesproviderconfig.h \
       
    78             inc/tsserviceobserver.h \
       
    79             inc/tsmodelitemkeymsg.h \
       
    80             ../utils/inc/tsdataobserver.h \
       
    81             ../utils/inc/tsentry.h \
       
    82             ../utils/inc/tsentrykey.h \
       
    83             ../utils/inc/tsentrykeygenerator.h \
       
    84             ../utils/inc/tsutils.h \
       
    85             ../utils/inc/tsscreenshotmsg.h \
       
    86             ../utils/inc/tsunregscreenshotmsg.h \
       
    87             ../utils/inc/tsvisibilitymsg.h 
       
    88             
       
    89 
       
    90 LIBS += -lxqutils \
       
    91         -ltsutils \
       
    92         -ltsbackstepping \
       
    93         -laknicon \
       
    94         -lfbscli \          #for CFbsBitmap
       
    95         -lestor \           #for RDesReadStream
       
    96         -lxqutils \
       
    97         -lapgrfx \          #for CApaWindowGroupName
       
    98         -lws32 \            #for CWsGraphic
       
    99         -lapparc \          #for TApaAppInfo
       
   100         -lcaclient \        #for getApplicationIcon
       
   101         -lcone
       
   102 
       
   103 symbian {
       
   104     TARGET.UID3 = 0x200267B0
       
   105     TARGET.CAPABILITY = All -TCB
       
   106 }
       
   107