os/persistentdata/persistentstorage/sql/GROUP/SqlDb.mmp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2005-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 // SqlDb.dll SQL Database management - client dll
    15 // 
    16 //
    17 
    18 /**
    19 @file
    20 */
    21 
    22 TARGET			sqldb.dll
    23 TARGETTYPE		dll
    24 
    25 UID				0x1000008d 0x10281E18
    26 
    27 //CodeWarrior compilation options - disable the "illegal pragma" warning
    28 OPTION CW -w noillpragmas
    29 
    30 OS_LAYER_SYSTEMINCLUDE_SYMBIAN
    31 USERINCLUDE		../traces_SqlDb
    32 USERINCLUDE		../INC
    33 USERINCLUDE		../SRC/Client
    34 USERINCLUDE		../SRC/Client/IPC
    35 USERINCLUDE		../SRC/Common
    36 USERINCLUDE		../SRC/Common/IPC
    37 USERINCLUDE		../SRC/Security
    38 //SqlDb includes sqlite3.h header file for the error code macros defined there
    39 #ifdef SYMBIAN_USE_SQLITE_VERSION_3_6_4
    40 USERINCLUDE		../SQLite364
    41 #else
    42 USERINCLUDE		../SQLite
    43 #endif
    44 //SqlDb does not use standard C library, but there are some C header files included in sqlite3.h
    45 OS_LAYER_ESTLIB_SYSTEMINCLUDE
    46 
    47 SOURCEPATH		../SRC/Client
    48 SOURCE			SQLDatabase.cpp 
    49 SOURCE			SqlDatabaseImpl.cpp 
    50 SOURCE			SqlStatement.cpp 
    51 SOURCE			SqlStatementImpl.cpp 
    52 SOURCE			SqlStream.cpp
    53 SOURCE			SqlBlob.cpp
    54 SOURCE			SqlDbSession.cpp 
    55 SOURCE			SqlStmtSession.cpp 
    56 SOURCE			SqlResourceTest.cpp 
    57 SOURCE			SqlScalarFullSelect.cpp 
    58 SOURCE			SqlResourceProfiler.cpp
    59 
    60 SOURCEPATH		../SRC/Client/IPC
    61 SOURCE			IPCBuf.cpp
    62 
    63 SOURCEPATH		../SRC/Common
    64 SOURCE			SqlUtil.cpp 
    65 SOURCE			SqlBufFlat.cpp 
    66 SOURCE			SqlBufIterator.cpp
    67 SOURCE			SqlSrvStartup.cpp
    68 
    69 SOURCEPATH		../SRC/Security
    70 SOURCE			SqlSecurity.cpp 
    71 SOURCE			SqlSecurityImpl.cpp
    72 
    73 LIBRARY			euser.lib efsrv.lib estor.lib
    74 
    75 VENDORID		0x70000001
    76 CAPABILITY		All -Tcb
    77 
    78 SMPSAFE
    79 
    80 DEFFILE			SqlDb.def