messagingapp/msgappfw/server/server.pro
branchRCL_3
changeset 57 ebe688cedc25
equal deleted inserted replaced
54:fa1df4b99609 57:ebe688cedc25
       
     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 TARGET = csserver
       
    18 QT -= gui
       
    19 CONFIG += hb
       
    20 CONFIG += NO_ICON
       
    21 
       
    22 DEPENDPATH += . ./inc ./src
       
    23 
       
    24 INCLUDEPATH += ./inc \
       
    25                ./../utils/inc \
       
    26                ./../../../mmsengine/inc
       
    27 
       
    28 INCLUDEPATH += $$APP_LAYER_SYSTEMINCLUDE
       
    29 
       
    30 SYMBIAN_PLATFORMS = WINSCW ARMV5
       
    31 
       
    32 symbian {
       
    33     TARGET.UID3 =  0x2002A542
       
    34     TARGET.CAPABILITY = CAP_SERVER
       
    35     TARGET.EPOCSTACKSIZE = 0x14000
       
    36     VENDORID =  VID_DEFAULT
       
    37     TARGET.EPOCHEAPSIZE = 0x100000 0x1000000
       
    38     VERSION = 1.0
       
    39 }
       
    40 
       
    41 HEADERS += ccsserver.h \
       
    42            ccssession.h \
       
    43            ccsplugininterface.h \
       
    44            ccscontactsresolver.h \
       
    45            ccscontactsmanager.h \ 
       
    46            ccsconversationcache.h \
       
    47            ccsconversationcachehelper.h \
       
    48            ccsconversation.h \
       
    49            ccsconversationevent.h \
       
    50            ccsconversationcontact.h \                     
       
    51            ccsconversationdeletehandler.h \
       
    52            ccsconversationmarkreadhandler.h \
       
    53            ccsbackuphandler.h
       
    54 
       
    55 SOURCES += ccsstartup.cpp \
       
    56            ccsserver.cpp \
       
    57            ccssession.cpp \
       
    58            ccsplugininterface.cpp \
       
    59            ccscontactsresolver.cpp \
       
    60            ccscontactsmanager.cpp \
       
    61            ccsconversationcache.cpp \
       
    62            ccsconversationcachehelper.cpp \
       
    63            ccsconversation.cpp \
       
    64            ccsconversationevent.cpp \
       
    65            ccsconversationcontact.cpp \                      
       
    66            ccsconversationdeletehandler.cpp \
       
    67            ccsconversationmarkreadhandler.cpp \
       
    68            ccsbackuphandler.cpp
       
    69 
       
    70 # Build.inf rules
       
    71 BLD_INF_RULES.prj_exports += \
       
    72      "$${LITERAL_HASH}include <platform_paths.hrh>" \
       
    73      "$${LITERAL_HASH}include <data_caging_paths.hrh>" \
       
    74      "rom/csserver.iby  CORE_APP_LAYER_IBY_EXPORT_PATH(csserver.iby)" \
       
    75      "stub_sis/csserver_stub.sis   /epoc32/data/z/system/install/csserver_stub.sis" \
       
    76      "backup_registration.xml z:/private/2002A542/backup_registration.xml"
       
    77      
       
    78 LIBS += -leuser \
       
    79         -lcone \
       
    80         -leikcore \
       
    81         -lefsrv \
       
    82         -lestor \
       
    83         -lflogger \
       
    84         -lecom \
       
    85         -lcsutils \
       
    86         -lmsgs \        
       
    87         -lbafl \
       
    88         -lcentralrepository \
       
    89         -limcm \
       
    90         -lQtContacts \
       
    91         -lxqutils 
       
    92         
       
    93