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 |
|
19 |
|
20 /** |
|
21 |
|
22 @file |
|
23 |
|
24 @SYMPurpose libzcore.dll libz compression library |
|
25 */ |
|
26 #include <platform_paths.hrh> |
|
27 |
|
28 |
|
29 TARGET libzcore.dll |
|
30 TARGETTYPE dll |
|
31 |
|
32 // UID allocated as KUidLibzCore |
|
33 UID 0x1000008d 0x10285823 |
|
34 |
|
35 CAPABILITY ALL -TCB |
|
36 VENDORID VID_DEFAULT |
|
37 VERSION 10.1 |
|
38 |
|
39 USERINCLUDE ../inc |
|
40 USERINCLUDE ../zlib |
|
41 |
|
42 OS_LAYER_SYSTEMINCLUDE |
|
43 OS_LAYER_LIBC_SYSTEMINCLUDE |
|
44 |
|
45 |
|
46 |
|
47 |
|
48 |
|
49 |
|
50 SOURCEPATH ../zlib |
|
51 |
|
52 SOURCE adler32.cpp compress.cpp deflate.cpp |
|
53 SOURCE trees.cpp inflate.cpp inftrees.cpp |
|
54 SOURCE inffast.cpp uncompr.cpp crc32.cpp |
|
55 SOURCE zutil.cpp |
|
56 SOURCE infback.cpp |
|
57 |
|
58 #ifdef EABI |
|
59 // this is used to ensure "best perfomance" compilation options |
|
60 ALWAYS_BUILD_AS_ARM |
|
61 OPTION ARMCC -Otime |
|
62 OPTION_REPLACE ARMCC -O2 -O3 |
|
63 #endif |
|
64 |
|
65 LIBRARY euser.lib |
|
66 |
|
67 DEFFILE ../~/libzcore.def |
|
68 |
|
69 SMPSAFE |
|
70 PAGED |
|