emailservices/nmailbase/nmailbase.pro
branchRCL_3
changeset 63 d189ee25cf9d
equal deleted inserted replaced
61:dcf0eedfc1a3 63:d189ee25cf9d
       
     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 CONFIG += debug
       
    19 TEMPLATE = lib
       
    20 TARGET = nmailbase
       
    21 QT += core
       
    22 DEFINES += BUILD_NMBASE_DLL
       
    23 
       
    24 INCLUDEPATH += ../../inc
       
    25 
       
    26 HEADERS   +=  inc/nmmailbox.h \
       
    27     inc/nmcommon.h \
       
    28     inc/nmmessage.h \
       
    29     inc/nmmessagepart.h \
       
    30     inc/nmmessageenvelope.h \
       
    31     inc/nmbasedef.h \
       
    32     inc/nmfolder.h \
       
    33     inc/nmaddress.h \
       
    34     inc/nmcommonheaders.h
       
    35     
       
    36 SOURCES   += src/nmmailbox.cpp \
       
    37     src/nmmessage.cpp \
       
    38     src/nmmessagepart.cpp \
       
    39     src/nmmessageenvelope.cpp \
       
    40     src/nmfolder.cpp \
       
    41     src/nmaddress.cpp
       
    42 
       
    43 LIBS += -leuser
       
    44 
       
    45 symbian*: { 
       
    46     TARGET.EPOCALLOWDLLDATA = 1
       
    47     TARGET.CAPABILITY = ALL \
       
    48         -TCB
       
    49     TARGET.UID2 = 0x1000008D
       
    50     TARGET.UID3 = 0x20026762
       
    51     
       
    52     INCLUDEPATH += /epoc32/include/ecom 
       
    53     INCLUDEPATH += $$MW_LAYER_SYSTEMINCLUDE
       
    54 				   
       
    55     defBlock = \      
       
    56       "$${LITERAL_HASH}if defined(MARM)" \
       
    57       "DEFFILE  eabi/nmailbase.def" \
       
    58 	  "$${LITERAL_HASH}else" \
       
    59       "DEFFILE  bwins/nmailbase.def" \
       
    60       "$${LITERAL_HASH}endif"
       
    61     
       
    62     MMP_RULES += defBlock
       
    63 }
       
    64 
       
    65 win32 {
       
    66    DESTDIR = ../../bin
       
    67 }
       
    68 
       
    69 
       
    70