engine/group/engine.mmp
author teknolog
Wed, 28 Apr 2010 00:04:02 +0100
changeset 63 aefdc579987d
parent 60 4d230e702aa3
child 65 bcd88ba95046
permissions -rw-r--r--
Fixes to make Podcatcher compile in S^3 based on Brendan's branch
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
     1
/*
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
     2
 * Copyright (c) 2007-2010 Sebastian Brannstrom, Lars Persson, EmbedDev AB
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
     3
 *
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
     4
 * All rights reserved.
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
     5
 * This component and the accompanying materials are made available
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
     6
 * under the terms of the License "Eclipse Public License v1.0"
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
     7
 * which accompanies this distribution, and is available
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
     8
 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
     9
 *
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    10
 * Initial Contributors:
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    11
 * EmbedDev AB - initial contribution.
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    12
 *
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    13
 * Contributors:
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    14
 *
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    15
 * Description:
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    16
 *
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    17
 */
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    18
 
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    19
#ifdef SQLITE_INCLUDED
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    20
// must build a .lib since sqlite uses "initialized writable data"
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    21
TARGET podcastengine.lib
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    22
TARGETTYPE LIB
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    23
#else
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    24
TARGET podcastengine.dll
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    25
TARGETTYPE DLL
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    26
UID             0x1000008d 0xA11F867F
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    27
#endif
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    28
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    29
SOURCEPATH ..\src
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    30
USERINCLUDE ..\inc
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    31
SYSTEMINCLUDE \epoc32\include 
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    32
SYSTEMINCLUDE \epoc32\include\mw 		// needed for S^3
63
aefdc579987d Fixes to make Podcatcher compile in S^3 based on Brendan's branch
teknolog
parents: 60
diff changeset
    33
SYSTEMINCLUDE \epoc32\include\platform
aefdc579987d Fixes to make Podcatcher compile in S^3 based on Brendan's branch
teknolog
parents: 60
diff changeset
    34
SYSTEMINCLUDE \epoc32\include\platform\mw
2
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    35
60
4d230e702aa3 Moved development branch from MCL to FCL
teknolog
parents: 2
diff changeset
    36
#ifdef SQLITE_INCLUDED
4d230e702aa3 Moved development branch from MCL to FCL
teknolog
parents: 2
diff changeset
    37
SYSTEMINCLUDE ..\..\engine\sqlite\inc
4d230e702aa3 Moved development branch from MCL to FCL
teknolog
parents: 2
diff changeset
    38
#else
4d230e702aa3 Moved development branch from MCL to FCL
teknolog
parents: 2
diff changeset
    39
SYSTEMINCLUDE \epoc32\include\stdapis
4d230e702aa3 Moved development branch from MCL to FCL
teknolog
parents: 2
diff changeset
    40
#endif
4d230e702aa3 Moved development branch from MCL to FCL
teknolog
parents: 2
diff changeset
    41
2
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    42
// Engine
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    43
SOURCE			HttpClient.cpp
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    44
SOURCE			HttpEventHandler.cpp 
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    45
SOURCE			FeedParser.cpp 
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    46
SOURCE			FeedEngine.cpp 
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    47
SOURCE			ShowInfo.cpp
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    48
SOURCE			FeedInfo.cpp
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    49
SOURCE			FeedTimer.cpp
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    50
SOURCE			ShowEngine.cpp
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    51
SOURCE			SettingsEngine.cpp
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    52
SOURCE			MetaDataReader.cpp 
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    53
SOURCE			OpmlParser.cpp 
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    54
SOURCE			PodcastUtils.cpp
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    55
SOURCE			PodCastModel.cpp  
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    56
SOURCE			ImageHandler.cpp
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    57
SOURCE 			ConnectionEngine.cpp
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    58
CAPABILITY NetworkServices UserEnvironment
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    59
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    60
#ifndef SQLITE_INCLUDED
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    61
LIBRARY	sqlite3.lib
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    62
#endif
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    63
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    64
LIBRARY	euser.lib 
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    65
LIBRARY	bafl.lib
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    66
LIBRARY	efsrv.lib
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    67
LIBRARY	mediaclientaudio.lib
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    68
LIBRARY	inetprotutil.lib
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    69
LIBRARY	charconv.lib
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    70
LIBRARY	xmlframework.lib
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    71
LIBRARY	http.lib 
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    72
LIBRARY	flogger.lib
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    73
LIBRARY	ezlib.lib
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    74
LIBRARY	estor.lib 
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    75
LIBRARY	commdb.lib
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    76
LIBRARY esock.lib
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    77
LIBRARY mmfcontrollerframework.lib 
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    78
LIBRARY apgrfx.lib
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    79
LIBRARY cone.lib
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    80
LIBRARY apmime.lib 
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    81
LIBRARY cmmanager.lib
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    82
LIBRARY fbscli.lib
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    83
LIBRARY imageconversion.lib 
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    84
LIBRARY bitmaptransforms.lib 
60
4d230e702aa3 Moved development branch from MCL to FCL
teknolog
parents: 2
diff changeset
    85
LIBRARY eikcore.lib 
4d230e702aa3 Moved development branch from MCL to FCL
teknolog
parents: 2
diff changeset
    86
//staticlibrary sqlite_podcatcher.lib