os/persistentdata/persistentstorage/sql/GROUP/SqlSrv.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) 2005-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
// SqlSrv.exe SQL database server
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
TARGET		sqlsrv.exe
sl@0
    23
TARGETTYPE	exe
sl@0
    24
CAPABILITY	ProtServ
sl@0
    25
sl@0
    26
EPOCFIXEDPROCESS
sl@0
    27
sl@0
    28
#ifdef WINSCW
sl@0
    29
EPOCHEAPSIZE 0x00020000 0x00600000
sl@0
    30
#else
sl@0
    31
EPOCHEAPSIZE 0x00020000 0x02000000
sl@0
    32
#endif
sl@0
    33
sl@0
    34
EPOCSTACKSIZE	0x3000
sl@0
    35
sl@0
    36
UID		    0 0x10281E17
sl@0
    37
VENDORID	0x70000001
sl@0
    38
sl@0
    39
SMPSAFE
sl@0
    40
sl@0
    41
//CodeWarrior compilation options - disable the "illegal pragma" warning
sl@0
    42
OPTION CW -w noillpragmas
sl@0
    43
sl@0
    44
OS_LAYER_SYSTEMINCLUDE_SYMBIAN
sl@0
    45
OS_LAYER_ESTLIB_SYSTEMINCLUDE
sl@0
    46
USERINCLUDE	../traces_SqlSrv
sl@0
    47
USERINCLUDE	../INC
sl@0
    48
USERINCLUDE	../SRC/Common
sl@0
    49
USERINCLUDE	../SRC/Common/IPC
sl@0
    50
USERINCLUDE	../SRC/Security
sl@0
    51
USERINCLUDE	../SRC/Server
sl@0
    52
USERINCLUDE	../SRC/Server/IPC
sl@0
    53
USERINCLUDE	../SRC/Server/Compact
sl@0
    54
USERINCLUDE	../OsLayer
sl@0
    55
#ifdef SYMBIAN_USE_SQLITE_VERSION_3_6_4
sl@0
    56
USERINCLUDE		../SQLite364
sl@0
    57
#else
sl@0
    58
USERINCLUDE		../SQLite
sl@0
    59
#endif
sl@0
    60
sl@0
    61
SOURCEPATH	../SRC/Server
sl@0
    62
SOURCE		SqlSrvMain.cpp 
sl@0
    63
SOURCE		SqlSrvSession.cpp 
sl@0
    64
SOURCE		SqlSrvDatabase.cpp 
sl@0
    65
SOURCE		SqlSrvStatement.cpp 
sl@0
    66
SOURCE		SqlSrvAuthorizer.cpp
sl@0
    67
SOURCE		SqlSrvUtil.cpp 
sl@0
    68
SOURCE		SqlSrvStrings.cpp 
sl@0
    69
SOURCE		SqlSrvStatementUtil.cpp 
sl@0
    70
SOURCE		SqlSrvCollation.cpp 
sl@0
    71
SOURCE		SqlSrvSecurityMap.cpp
sl@0
    72
SOURCE		SqlSrvFileData.cpp 
sl@0
    73
SOURCE		SqlSrvDriveSpace.cpp 
sl@0
    74
SOURCE		SqlSrvDbSysSettings.cpp 
sl@0
    75
SOURCE		SqlSrvConfig.cpp 
sl@0
    76
SOURCE		SqlSrvBlob.cpp
sl@0
    77
SOURCE		SqlSrvCheckStatement.cpp 
sl@0
    78
SOURCE		SqlSrvResourceProfiler.cpp
sl@0
    79
// for backup and restore
sl@0
    80
SOURCE		SqlBur.cpp
sl@0
    81
sl@0
    82
SOURCEPATH	../SRC/Server/IPC
sl@0
    83
SOURCE		IPCStream.cpp
sl@0
    84
sl@0
    85
SOURCEPATH	../SRC/Common
sl@0
    86
SOURCE		SqlUtil.cpp 
sl@0
    87
SOURCE		SqlBufFlat.cpp 
sl@0
    88
SOURCE		SqlBufIterator.cpp
sl@0
    89
sl@0
    90
SOURCEPATH	../SRC/Security
sl@0
    91
SOURCE		SqlSecurityImpl.cpp 
sl@0
    92
sl@0
    93
SOURCEPATH	../SRC/Server/Compact
sl@0
    94
SOURCE		SqlCompact.cpp 
sl@0
    95
SOURCE		SqlCompactEntry.cpp 
sl@0
    96
SOURCE		SqlCompactConn.cpp 
sl@0
    97
SOURCE		SqlCompactTimer.cpp
sl@0
    98
sl@0
    99
LIBRARY		estlib.lib 
sl@0
   100
LIBRARY		euser.lib 
sl@0
   101
LIBRARY		efsrv.lib
sl@0
   102
LIBRARY		estor.lib
sl@0
   103
LIBRARY		charconv.lib
sl@0
   104
LIBRARY		hal.lib
sl@0
   105
// for backup and restore
sl@0
   106
LIBRARY		abclient.lib
sl@0
   107
sl@0
   108
STATICLIBRARY	sqlite.lib
sl@0
   109
sl@0
   110