engine/group/engine.mmp
author Sebastian Brannstrom <sebastianb@symbian.org>
Fri, 23 Jul 2010 15:21:11 +0100
branchRCL_3
changeset 128 e1dedb07817d
parent 126 79076725bab9
child 131 03b26379213d
permissions -rw-r--r--
Tweaks to capabilities in DLL to enable self signing; Opening RCL_3 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
 
126
79076725bab9 Added #define to enable/disable MPX integration, since it requires capabilities that can't be granted when self signed
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 121
diff changeset
    19
// MPX integration can not be enabled for self signed versions 
79076725bab9 Added #define to enable/disable MPX integration, since it requires capabilities that can't be granted when self signed
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 121
diff changeset
    20
MACRO ENABLE_MPX_INTEGRATION
79076725bab9 Added #define to enable/disable MPX integration, since it requires capabilities that can't be granted when self signed
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 121
diff changeset
    21
#define ENABLE_MPX_INTEGRATION
79076725bab9 Added #define to enable/disable MPX integration, since it requires capabilities that can't be granted when self signed
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 121
diff changeset
    22
 
2
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    23
TARGET podcastengine.dll
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    24
TARGETTYPE DLL
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    25
UID             0x1000008d 0xA11F867F
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    26
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    27
SOURCEPATH ..\src
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    28
USERINCLUDE ..\inc
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    29
SYSTEMINCLUDE \epoc32\include 
93
c2f1ea38ec70 Import from FCL default branch
teknolog
parents: 83
diff changeset
    30
SYSTEMINCLUDE \epoc32\include\mw
c2f1ea38ec70 Import from FCL default branch
teknolog
parents: 83
diff changeset
    31
SYSTEMINCLUDE \epoc32\include\platform
c2f1ea38ec70 Import from FCL default branch
teknolog
parents: 83
diff changeset
    32
SYSTEMINCLUDE \epoc32\include\platform\mw
c2f1ea38ec70 Import from FCL default branch
teknolog
parents: 83
diff changeset
    33
SYSTEMINCLUDE \epoc32\include\stdapis
2
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    34
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    35
SOURCE			HttpClient.cpp
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    36
SOURCE			HttpEventHandler.cpp 
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    37
SOURCE			FeedParser.cpp 
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    38
SOURCE			FeedEngine.cpp 
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    39
SOURCE			ShowInfo.cpp
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    40
SOURCE			FeedInfo.cpp
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    41
SOURCE			FeedTimer.cpp
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    42
SOURCE			ShowEngine.cpp
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    43
SOURCE			SettingsEngine.cpp
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    44
SOURCE			MetaDataReader.cpp 
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    45
SOURCE			OpmlParser.cpp 
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    46
SOURCE			PodcastUtils.cpp
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    47
SOURCE			PodCastModel.cpp  
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    48
SOURCE			ImageHandler.cpp
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    49
SOURCE 			ConnectionEngine.cpp
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    50
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    51
LIBRARY	sqlite3.lib
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    52
LIBRARY	euser.lib 
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    53
LIBRARY	bafl.lib
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    54
LIBRARY	efsrv.lib
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    55
LIBRARY	mediaclientaudio.lib
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    56
LIBRARY	inetprotutil.lib
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    57
LIBRARY	charconv.lib
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    58
LIBRARY	xmlframework.lib
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    59
LIBRARY	http.lib 
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    60
LIBRARY	flogger.lib
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    61
LIBRARY	ezlib.lib
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    62
LIBRARY	estor.lib 
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    63
LIBRARY	commdb.lib
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    64
LIBRARY esock.lib
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    65
LIBRARY mmfcontrollerframework.lib 
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    66
LIBRARY apgrfx.lib
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    67
LIBRARY cone.lib
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    68
LIBRARY apmime.lib 
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    69
LIBRARY cmmanager.lib
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    70
LIBRARY fbscli.lib
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    71
LIBRARY imageconversion.lib 
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    72
LIBRARY bitmaptransforms.lib 
58
87cb33beeae2 Remove icon index. Start caching icons as mbms.
Lars Persson <lars.persson@embeddev.se>
parents: 2
diff changeset
    73
LIBRARY eikcore.lib 
126
79076725bab9 Added #define to enable/disable MPX integration, since it requires capabilities that can't be granted when self signed
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 121
diff changeset
    74
#ifdef ENABLE_MPX_INTEGRATION  
93
c2f1ea38ec70 Import from FCL default branch
teknolog
parents: 83
diff changeset
    75
LIBRARY mpxcollectionhelper.lib
126
79076725bab9 Added #define to enable/disable MPX integration, since it requires capabilities that can't be granted when self signed
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 121
diff changeset
    76
#endif
98
5f9e7e14eb11 Merged playback functionality from FCL Symbian1 branch
teknolog
parents: 93
diff changeset
    77
LIBRARY commonui.lib  // CDocumentHandler
5f9e7e14eb11 Merged playback functionality from FCL Symbian1 branch
teknolog
parents: 93
diff changeset
    78
LIBRARY apparc.lib
5f9e7e14eb11 Merged playback functionality from FCL Symbian1 branch
teknolog
parents: 93
diff changeset
    79
LIBRARY avkon.lib
121
45e21fd808cd Fix for bug 2716
jakl.martin@cell-telecom.com
parents: 99
diff changeset
    80
LIBRARY centralrepository.lib
93
c2f1ea38ec70 Import from FCL default branch
teknolog
parents: 83
diff changeset
    81
128
e1dedb07817d Tweaks to capabilities in DLL to enable self signing; Opening RCL_3 branch.
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 126
diff changeset
    82
#ifdef ENABLE_MPX_INTEGRATION
e1dedb07817d Tweaks to capabilities in DLL to enable self signing; Opening RCL_3 branch.
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 126
diff changeset
    83
CAPABILITY NetworkServices UserEnvironment WriteUserData ReadDeviceData WriteDeviceData MultimediaDD
e1dedb07817d Tweaks to capabilities in DLL to enable self signing; Opening RCL_3 branch.
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 126
diff changeset
    84
#else
e1dedb07817d Tweaks to capabilities in DLL to enable self signing; Opening RCL_3 branch.
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 126
diff changeset
    85
CAPABILITY NetworkServices UserEnvironment
e1dedb07817d Tweaks to capabilities in DLL to enable self signing; Opening RCL_3 branch.
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 126
diff changeset
    86
#endif