os/persistentdata/persistentstorage/sqlite3api/GROUP/tclsqlite3.mmp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
     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 test application (used to run the TCL test suite)
    15 // The "buildrom" command (uncomment before that the line in sqlite3tests.iby file that copies "1020383e.txt" file):
    16 // buildrom -D_SERIAL_DOWNLOAD -DRVCT -D_EABI=ARMV5 -fm=/epoc32/rom/include/featuredatabase.xml h4hrp.oby textshell.oby sqlite3.iby sqlite3tests.iby openenv.iby bluetooth.iby ups.iby timezonelocalization.iby -orombld.img
    17 // 
    18 //
    19 
    20 /**
    21  @file
    22 */
    23 
    24 #include "tclsqlite3_macro.mmh"
    25 
    26 TARGET		tclsqlite3.exe
    27 TARGETTYPE	EXE
    28 
    29 CAPABILITY	All -Tcb
    30 
    31 UID         0x20004C45 0x10285A82
    32 
    33 VENDORID	0x70000001
    34 
    35 SMPSAFE
    36 
    37 EPOCSTACKSIZE 81920  //max 80kb
    38 EPOCHEAPSIZE 0x00100000 0x02000000
    39 
    40 // Need this otherwise get a lot of mismatched IMPORT_C/EXPORT_C even though this is an exe
    41 MACRO SQLITE_DLL
    42 
    43 //////////////////////////////////////////////////////////////////////////////////////////////////////////
    44 /////////////////  RVCT compiler warning & optimization options  /////////////////////////////////////////
    45 
    46 //550: <entity-kind> "entity" was set but never used
    47 //C2874W: <name> may be used before being set
    48 //368: <entity-kind> "<entity>" defines no constructor to initialize the following:
    49 //177-D: variable <name> was declared but never referenced
    50 //1293-D: assignment in condition
    51 //C3017W: <name> may be used before being set
    52 //61: integer operation result is out of range
    53 
    54 OPTION ARMCC --diag_suppress 550,2874,368,177,1293,3017,61
    55 OPTION ARMCC -Ono_cg_cond
    56 
    57 //////////////////////////////////////////////////////////////////////////////////////////////////////////
    58 /////////////////  CW compiler warning options  //////////////////////////////////////////////////////////
    59 
    60 //Variable/argument <x> is not used in function
    61 //Possible unwanted <x>
    62 
    63 OPTION CW -w nounused -w nounwanted
    64 
    65 //////////////////////////////////////////////////////////////////////////////////////////////////////////
    66 /////////////////  GCC compiler warning options  /////////////////////////////////////////////////////////
    67 
    68 //"-w" option suppresses all warnings! 
    69 //"<variable> might be used uninitialized in this function" - only this warning needs to be suppressed,
    70 //but there is no option for that.
    71 
    72 OPTION GCC -w
    73 
    74 //////////////////////////////////////////////////////////////////////////////////////////////////////////
    75 
    76 USERINCLUDE		../traces_sqlite3
    77 USERINCLUDE		../SQLite
    78 USERINCLUDE		../OsLayer
    79 OS_LAYER_LIBC_SYSTEMINCLUDE
    80 OS_LAYER_SYSTEMINCLUDE_SYMBIAN
    81 USERINCLUDE ../TEST/TCL/tcldistribution/generic
    82 
    83 SOURCEPATH	../SQLite
    84 SOURCE		alter.c
    85 SOURCE		analyze.c
    86 SOURCE		attach.c
    87 SOURCE		auth.c
    88 SOURCE		bitvec.c
    89 SOURCE		btree.c
    90 SOURCE		btmutex.c
    91 SOURCE		build.c
    92 SOURCE		callback.c
    93 SOURCE		complete.c
    94 SOURCE		date.c
    95 SOURCE		delete.c
    96 SOURCE		expr.c
    97 SOURCE		fault.c
    98 SOURCE		func.c
    99 SOURCE		global.c
   100 SOURCE		hash.c
   101 SOURCE		insert.c
   102 SOURCE		journal.c
   103 SOURCE		legacy.c
   104 SOURCE		loadext.c
   105 SOURCE		main.c
   106 SOURCE		malloc.c
   107 SOURCE		mem1.c
   108 SOURCE		mem2.c
   109 SOURCE		mem3.c
   110 SOURCE		mem4.c
   111 SOURCE		mem5.c
   112 SOURCE		mem6.c
   113 SOURCE		mutex.c
   114 SOURCE		opcodes.c
   115 SOURCE		os.c
   116 SOURCE		pager.c
   117 SOURCE		parse.c
   118 SOURCE		pcache.c
   119 SOURCE		pragma.c
   120 SOURCE		prepare.c
   121 SOURCE		printf.c
   122 SOURCE		random.c
   123 SOURCE		resolve.c
   124 SOURCE		select.c
   125 SOURCE		status.c
   126 SOURCE		table.c
   127 SOURCE		tokenize.c
   128 SOURCE		trigger.c
   129 SOURCE		update.c
   130 SOURCE		utf.c
   131 SOURCE		util.c
   132 SOURCE		vacuum.c
   133 SOURCE		vdbe.c
   134 SOURCE		vdbeapi.c
   135 SOURCE		vdbeaux.c
   136 SOURCE		vdbeblob.c
   137 SOURCE		vdbefifo.c
   138 SOURCE		vdbemem.c
   139 SOURCE		vtab.c
   140 SOURCE		walker.c
   141 SOURCE		where.c
   142 
   143 SOURCEPATH	../TEST/SRC
   144 SOURCE		tclsqlite.c
   145 SOURCE		test1.c
   146 SOURCE		test2.c
   147 SOURCE		test3.c
   148 SOURCE		test4.c
   149 SOURCE		test5.c
   150 SOURCE		test6.c
   151 SOURCE		test7.c
   152 SOURCE		test8.c
   153 SOURCE		test9.c
   154 SOURCE		test_async.c
   155 SOURCE		test_autoext.c
   156 SOURCE		test_btree.c	
   157 SOURCE		test_config.c
   158 SOURCE		test_devsym.c
   159 SOURCE		test_func.c
   160 SOURCE		test_hexio.c
   161 SOURCE		test_loadext.c
   162 SOURCE		test_md5.c
   163 SOURCE		test_malloc.c
   164 SOURCE		test_mutex.c
   165 SOURCE		test_onefile.c
   166 SOURCE		test_osinst.c
   167 SOURCE		test_schema.c
   168 SOURCE		test_server.c
   169 SOURCE		test_tclvar.c
   170 SOURCE		test_thread.c
   171 
   172 SOURCEPATH	../OsLayer
   173 SOURCE		FileBuf64.cpp
   174 SOURCE		os_symbian_mt.cpp
   175 SOURCE		SqliteUtil.cpp
   176 #ifdef WINSCW
   177 SOURCE		os_symbian_emul.cpp
   178 #else
   179 SOURCE		os_symbian_hrdw.cpp
   180 #endif
   181 SOURCE		test_fileutil.cpp
   182 
   183 LIBRARY		euser.lib 
   184 LIBRARY		efsrv.lib 
   185 LIBRARY		estor.lib
   186 
   187 STATICLIBRARY	libcrt0.lib 
   188 LIBRARY			libc.lib
   189 LIBRARY			libpthread.lib
   190 LIBRARY			libm.lib
   191 LIBRARY			libdl.lib
   192 STATICLIBRARY	tcl.lib
   193 #ifdef WINSCW
   194 LIBRARY		ewsd.lib
   195 #endif