emailservices/emailstore/message_store/server/server.pro
changeset 18 578830873419
child 68 83cc6bae1de8
equal deleted inserted replaced
4:e7aa27f58ae1 18:578830873419
       
     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 
       
    18 TEMPLATE = lib
       
    19 TARGET = MessageStoreServer
       
    20 DEPENDPATH += . inc src
       
    21 INCLUDEPATH += . \
       
    22 			../client/api \
       
    23 			../common/inc \
       
    24 			../../inc \
       
    25 			../../../../inc
       
    26 
       
    27 
       
    28 HEADERS += inc/BackupRestoreObserver.h \
       
    29            inc/ContainerStore.h \
       
    30            inc/ContainerStoreAccountTable.h \
       
    31            inc/ContainerStoreContainersTable.h \
       
    32            inc/ContainerStoreContentManager.h \
       
    33            inc/ContainerStoreDefs.h \
       
    34            inc/ContainerStoreDeleteHandler.h \
       
    35            inc/ContainerStoreEncryption.h \
       
    36            inc/ContainerStoreGeneralTable.h \
       
    37            inc/ContainerStoreMRUAddressTable.h \
       
    38            inc/ContainerStoreSearchHandler.h \
       
    39            inc/ContainerStoreSearchResultTable.h \
       
    40            inc/ContainerStoreSortingTable.h \
       
    41            inc/ContainerStoreTable.h \
       
    42            inc/ContainerStoreUtils.h \
       
    43            inc/EncryptableTable.h \
       
    44            inc/MessageStoreEncryptHandler.h \
       
    45            inc/MessageStoreServer.h \
       
    46            inc/MessageStoreSession.h \
       
    47            inc/MsgStoreInMemorySortRowSet.h \
       
    48            inc/MsgStoreSortResultRowSet.h \
       
    49            inc/MsgStoreStringSortResultRowSet.h \
       
    50            inc/ShutdownServer.h \
       
    51            inc/StoreDriveMonitor.h \
       
    52            inc/bufferedmessagecreator.h \
       
    53            inc/messagestoreutils.h
       
    54 
       
    55 SOURCES += src/BackupRestoreObserver.cpp \
       
    56            src/ContainerStore.cpp \
       
    57            src/ContainerStoreAccountTable.cpp \
       
    58            src/ContainerStoreContainersTable.cpp \
       
    59            src/ContainerStoreContentManager.cpp \
       
    60            src/ContainerStoreDeleteHandler.cpp \
       
    61            src/ContainerStoreEncryption.cpp \
       
    62            src/ContainerStoreGeneralTable.cpp \
       
    63            src/ContainerStoreMRUAddressTable.cpp \
       
    64            src/ContainerStoreSearchHandler.cpp \
       
    65            src/ContainerStoreSearchResultTable.cpp \
       
    66            src/ContainerStoreSortingTable.cpp \
       
    67            src/ContainerStoreTable.cpp \
       
    68            src/ContainerStoreUtils.cpp \
       
    69            src/MessageStoreEncryptHandler.cpp \
       
    70            src/MessageStoreServer.cpp \
       
    71            src/MessageStoreSession.cpp \
       
    72            src/MsgStoreInMemorySortRowSet.cpp \
       
    73            src/MsgStoreSortResultRowSet.cpp \
       
    74            src/MsgStoreStringSortResultRowSet.cpp \
       
    75            src/ShutdownServer.cpp \
       
    76            src/StoreDriveMonitor.cpp \
       
    77            src/bufferedmessagecreator.cpp \
       
    78            src/messagestoreutils.cpp \
       
    79            ../common/src/PropertiesSerializer.cpp \
       
    80 		   ../common/src/AccountsSerializer.cpp \
       
    81 		   ../common/src/psintpropertyobserver.cpp
       
    82 
       
    83 LIBS += -leuser \
       
    84 		-lestor \
       
    85 		-lefsrv \
       
    86 		-lbafl \
       
    87 		-ledbms \
       
    88 		-lsysutil \
       
    89 		-lcharconv \
       
    90 		-lDebugLog \
       
    91 		-lImsPointSecMonitor \
       
    92 		-lplatformenv
       
    93 
       
    94 symbian*: {
       
    95 
       
    96     TARGET.EPOCALLOWDLLDATA = 1
       
    97     TARGET.CAPABILITY = CAP_CLIENT_DLL
       
    98     TARGET.UID2 = 0x1000008d
       
    99     TARGET.UID3 = 0x2001FDA3
       
   100 
       
   101     defBlock = \
       
   102 	  "$${LITERAL_HASH}if defined(MARM)" \
       
   103 	  "DEFFILE  eabi/messagestoreserver.def" \
       
   104       "$${LITERAL_HASH}else" \
       
   105       "DEFFILE  bwins/messagestoreserver.def" \
       
   106       "$${LITERAL_HASH}endif"
       
   107 
       
   108     MMP_RULES += defBlock
       
   109 }
       
   110 
       
   111 win32 {
       
   112 	DESTDIR = ../../../../bin
       
   113 }