emailuis/nmframeworkadapter/nmframeworkadapter.pro
changeset 18 578830873419
child 20 ecc8def7944a
equal deleted inserted replaced
4:e7aa27f58ae1 18:578830873419
       
     1 #
       
     2 # Copyright (c) 2008 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 # Version : %version: 22 %
       
    17 TEMPLATE = lib
       
    18 TARGET = nmframeworkadapter
       
    19 
       
    20 CONFIG += plugin
       
    21 DEFINES += BUILD_DLL
       
    22 
       
    23 INCLUDEPATH += ../../inc
       
    24 
       
    25 HEADERS += inc/nmframeworkadapter.h \
       
    26            inc/nmfwamessagefetchingoperation.h \
       
    27            inc/nmfwamessagecreationoperation.h \
       
    28            inc/nmfwastoreenvelopesoperation.h \
       
    29            inc/nmfwaforwardmessagecreationoperation.h \
       
    30            inc/nmfwareplymessagecreationoperation.h \
       
    31            inc/nmfwamessagesendingoperation.h \
       
    32            inc/nmfwaaddattachmentsoperation.h \
       
    33            inc/nmfwaremoveattachmentoperation.h \
       
    34            inc/nmfwastoremessageoperation.h \
       
    35            inc/nmfwacheckoutboxoperation.h \
       
    36            inc/nmfwamessagepartfetchingoperation.h
       
    37 
       
    38 SOURCES += src/nmframeworkadapter.cpp \
       
    39            src/nmfwamessagefetchingoperation.cpp \
       
    40            src/nmfwamessagecreationoperation.cpp \
       
    41            src/nmfwastoreenvelopesoperation.cpp \
       
    42            src/nmfwaforwardmessagecreationoperation.cpp \
       
    43            src/nmfwareplymessagecreationoperation.cpp \
       
    44            src/nmfwamessagesendingoperation.cpp \
       
    45            src/nmfwaaddattachmentsoperation.cpp \
       
    46            src/nmfwaremoveattachmentoperation.cpp \
       
    47            src/nmfwastoremessageoperation.cpp \
       
    48            src/nmfwacheckoutboxoperation.cpp \
       
    49            src/nmfwamessagepartfetchingoperation.cpp
       
    50 
       
    51 RESOURCES +=
       
    52 
       
    53 symbian*: {
       
    54     INCLUDEPATH += /epoc32/include/ecom \
       
    55     ../../emailservices/emailframework/inc \
       
    56     ../../emailservices/emailframework/commonlib/inc \
       
    57     ../../inc
       
    58     INCLUDEPATH += /epoc32/include/ecom
       
    59 
       
    60     pluginstub.sources = nmframeworkadapter.dll
       
    61     pluginstub.path = /resource/plugins
       
    62     DEPLOYMENT += pluginstub
       
    63 
       
    64 	TARGET.EPOCHEAPSIZE = 0x20000 0x1000000
       
    65     TARGET.EPOCALLOWDLLDATA = 1
       
    66     TARGET.CAPABILITY = CAP_GENERAL_DLL
       
    67     TARGET.UID2 = 0x1000008D
       
    68     TARGET.UID3 = 0x20027019
       
    69 
       
    70 	LIBS += -lnmailbase
       
    71 	LIBS += -lnmailuiengine
       
    72 	LIBS += -lfsmailframework
       
    73 	LIBS += -lfsfwcommonlib
       
    74 	LIBS += -lcharconv
       
    75 
       
    76 	BLD_INF_RULES.prj_exports += \
       
    77     "../rom/nmframeworkadapter.iby             CORE_APP_LAYER_IBY_EXPORT_PATH(nmframeworkadapter.iby)"
       
    78 
       
    79 }
       
    80 
       
    81 win32 {
       
    82      DESTDIR = ../../../../bin
       
    83 
       
    84      LIBS += -L../../../../bin \
       
    85         -lnmailbase
       
    86 }
       
    87 
       
    88