os/persistentdata/persistentstorage/sqlite3api/GROUP/sqlite3.mmp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2007-2010 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
// SQLite C API library
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
/**
sl@0
    19
 @file
sl@0
    20
*/
sl@0
    21
sl@0
    22
#include "sqlite3_macro.mmh"
sl@0
    23
sl@0
    24
TARGET		sqlite3.dll
sl@0
    25
TARGETTYPE	dll
sl@0
    26
sl@0
    27
CAPABILITY	All -Tcb
sl@0
    28
sl@0
    29
UID			0x1000008d 0x10285A79
sl@0
    30
sl@0
    31
VendorId	0x70000001
sl@0
    32
sl@0
    33
VERSION	6.3
sl@0
    34
SMPSAFE
sl@0
    35
sl@0
    36
#ifndef WINSCW
sl@0
    37
EPOCALLOWDLLDATA
sl@0
    38
#endif
sl@0
    39
sl@0
    40
MACRO SQLITE_DLL
sl@0
    41
sl@0
    42
//////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
    43
/////////////////  RVCT compiler warning & optimization options  /////////////////////////////////////////
sl@0
    44
sl@0
    45
//550: <entity-kind> "entity" was set but never used
sl@0
    46
//C2874W: <name> may be used before being set
sl@0
    47
//368: <entity-kind> "<entity>" defines no constructor to initialize the following:
sl@0
    48
//177-D: variable <name> was declared but never referenced
sl@0
    49
//1293-D: assignment in condition
sl@0
    50
//C3017W: <name> may be used before being set
sl@0
    51
//61: integer operation result is out of range
sl@0
    52
sl@0
    53
OPTION ARMCC --diag_suppress 550,2874,368,177,1293,3017,61
sl@0
    54
OPTION ARMCC -Ono_cg_cond
sl@0
    55
sl@0
    56
//////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
    57
/////////////////  CW compiler warning options  //////////////////////////////////////////////////////////
sl@0
    58
sl@0
    59
//Variable/argument <x> is not used in function
sl@0
    60
//Possible unwanted <x>
sl@0
    61
sl@0
    62
OPTION CW -w nounused -w nounwanted
sl@0
    63
sl@0
    64
//////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
    65
/////////////////  GCC compiler warning options  /////////////////////////////////////////////////////////
sl@0
    66
sl@0
    67
//"-w" option suppresses all warnings! 
sl@0
    68
//"<variable> might be used uninitialized in this function" - only this warning needs to be suppressed,
sl@0
    69
//but there is no option for that.
sl@0
    70
sl@0
    71
OPTION GCC -w
sl@0
    72
sl@0
    73
//////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
    74
sl@0
    75
userinclude		../traces_sqlite3
sl@0
    76
userinclude		../SQLite
sl@0
    77
userinclude		../OsLayer
sl@0
    78
OS_LAYER_LIBC_SYSTEMINCLUDE
sl@0
    79
OS_LAYER_SYSTEMINCLUDE_SYMBIAN
sl@0
    80
sl@0
    81
SOURCEPATH	../SQLite
sl@0
    82
SOURCE		alter.c
sl@0
    83
SOURCE		analyze.c
sl@0
    84
SOURCE		attach.c
sl@0
    85
SOURCE		auth.c
sl@0
    86
SOURCE		bitvec.c
sl@0
    87
SOURCE		btree.c
sl@0
    88
SOURCE		btmutex.c
sl@0
    89
SOURCE		build.c
sl@0
    90
SOURCE		callback.c
sl@0
    91
SOURCE		complete.c
sl@0
    92
SOURCE		date.c
sl@0
    93
SOURCE		delete.c
sl@0
    94
SOURCE		expr.c
sl@0
    95
SOURCE		fault.c
sl@0
    96
SOURCE		func.c
sl@0
    97
SOURCE		global.c
sl@0
    98
SOURCE		hash.c
sl@0
    99
SOURCE		insert.c
sl@0
   100
SOURCE		journal.c
sl@0
   101
SOURCE		legacy.c
sl@0
   102
SOURCE		loadext.c
sl@0
   103
SOURCE		main.c
sl@0
   104
SOURCE		malloc.c
sl@0
   105
SOURCE		mem1.c
sl@0
   106
SOURCE		mem2.c
sl@0
   107
SOURCE		mem3.c
sl@0
   108
SOURCE		mem4.c
sl@0
   109
SOURCE		mem5.c
sl@0
   110
SOURCE		mem6.c
sl@0
   111
SOURCE		mutex.c
sl@0
   112
SOURCE		opcodes.c
sl@0
   113
SOURCE		os.c
sl@0
   114
SOURCE		pager.c
sl@0
   115
SOURCE		parse.c
sl@0
   116
SOURCE		pcache.c
sl@0
   117
SOURCE		pragma.c
sl@0
   118
SOURCE		prepare.c
sl@0
   119
SOURCE		printf.c
sl@0
   120
SOURCE		random.c
sl@0
   121
SOURCE		resolve.c
sl@0
   122
SOURCE		select.c
sl@0
   123
SOURCE		status.c
sl@0
   124
SOURCE		table.c
sl@0
   125
SOURCE		tokenize.c
sl@0
   126
SOURCE		trigger.c
sl@0
   127
SOURCE		update.c
sl@0
   128
SOURCE		utf.c
sl@0
   129
SOURCE		util.c
sl@0
   130
SOURCE		vacuum.c
sl@0
   131
SOURCE		vdbe.c
sl@0
   132
SOURCE		vdbeapi.c
sl@0
   133
SOURCE		vdbeaux.c
sl@0
   134
SOURCE		vdbeblob.c
sl@0
   135
SOURCE		vdbefifo.c
sl@0
   136
SOURCE		vdbemem.c
sl@0
   137
SOURCE		vtab.c
sl@0
   138
SOURCE		walker.c
sl@0
   139
SOURCE		where.c
sl@0
   140
sl@0
   141
SOURCEPATH	../OsLayer
sl@0
   142
SOURCE		FileBuf64.cpp
sl@0
   143
SOURCE		os_symbian_mt.cpp
sl@0
   144
SOURCE		SqliteUtil.cpp
sl@0
   145
#ifdef WINSCW
sl@0
   146
SOURCE		os_symbian_emul.cpp
sl@0
   147
#else
sl@0
   148
SOURCE		os_symbian_hrdw.cpp
sl@0
   149
#endif
sl@0
   150
sl@0
   151
LIBRARY		euser.lib 
sl@0
   152
LIBRARY		efsrv.lib 
sl@0
   153
LIBRARY		estor.lib
sl@0
   154
sl@0
   155
LIBRARY		libc.lib
sl@0
   156
LIBRARY		libpthread.lib
sl@0
   157
sl@0
   158
#ifdef WINSCW
sl@0
   159
LIBRARY		ewsd.lib
sl@0
   160
#endif
sl@0
   161
sl@0
   162
DEFFILE		sqlite3.def