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