equal
deleted
inserted
replaced
|
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 symbian*: { |
|
44 TARGET.EPOCALLOWDLLDATA = 1 |
|
45 TARGET.CAPABILITY = ALL \ |
|
46 -TCB |
|
47 TARGET.UID2 = 0x1000008D |
|
48 TARGET.UID3 = 0x20026762 |
|
49 |
|
50 INCLUDEPATH += /epoc32/include/ecom |
|
51 INCLUDEPATH += $$MW_LAYER_SYSTEMINCLUDE |
|
52 |
|
53 defBlock = \ |
|
54 "$${LITERAL_HASH}if defined(MARM)" \ |
|
55 "DEFFILE eabi/nmailbase.def" \ |
|
56 "$${LITERAL_HASH}else" \ |
|
57 "DEFFILE bwins/nmailbase.def" \ |
|
58 "$${LITERAL_HASH}endif" |
|
59 |
|
60 MMP_RULES += defBlock |
|
61 } |
|
62 |
|
63 win32 { |
|
64 DESTDIR = ../../bin |
|
65 } |
|
66 |
|
67 |
|
68 |