application/group/Podcast.mmp
author Sebastian Brannstrom <sebastianb@symbian.org>
Thu, 28 Oct 2010 22:27:12 +0100
branchRCL_3
changeset 299 56d23cf60795
parent 283 08a3356e8364
permissions -rw-r--r--
Fixes for issues using #define with raptor
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
 */
200
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: 144
diff changeset
    18
  
299
56d23cf60795 Fixes for issues using #define with raptor
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 283
diff changeset
    19
#include "..\..\group\defines.h"
23
cf4b850bbffb Added macro SYMBIAN1_UI that toggles between single and double tap UI
teknolog
parents: 2
diff changeset
    20
2
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    21
TARGET			Podcast.exe
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    22
TARGETTYPE  	exe
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    23
UID				0x100039CE 0xA0009D00  
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    24
200
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: 144
diff changeset
    25
#ifdef ENABLE_MPX_INTEGRATION
134
46baf9a7cadd Fix for KErrCorrupted bug in ShowEngine; Capabilities added to allow interaction with music player and MPXCollection
teknolog
parents: 126
diff changeset
    26
CAPABILITY NetworkServices UserEnvironment WriteUserData ReadDeviceData WriteDeviceData MultimediaDD
200
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: 144
diff changeset
    27
#else
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: 144
diff changeset
    28
CAPABILITY NetworkServices UserEnvironment
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: 144
diff changeset
    29
#endif
2
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    30
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    31
EPOCSTACKSIZE 81920
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    32
EPOCHEAPSIZE 1024000 32768000
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    33
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    34
SYSTEMINCLUDE \epoc32\include
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    35
SYSTEMINCLUDE \epoc32\include\mmf\common 
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    36
SYSTEMINCLUDE \epoc32\include\mw					// for Symbian^3
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    37
SYSTEMINCLUDE \epoc32\include\platform\mw			// for Symbian^3
126
c2f1ea38ec70 Import from FCL default branch
teknolog
parents: 125
diff changeset
    38
SYSTEMINCLUDE \epoc32\include\platform
116
a2e43aa1ad11 Fixed DEF files. Tested with Qt SQLite.
teknolog
parents: 104
diff changeset
    39
SYSTEMINCLUDE \epoc32\include\stdapis
a2e43aa1ad11 Fixed DEF files. Tested with Qt SQLite.
teknolog
parents: 104
diff changeset
    40
2
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    41
USERINCLUDE ..\..\engine\inc
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    42
USERINCLUDE . 
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    43
USERINCLUDE ..\inc
299
56d23cf60795 Fixes for issues using #define with raptor
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 283
diff changeset
    44
USERINCLUDE ..\..\group
2
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    45
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    46
SOURCEPATH ..\src
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    47
SOURCE  Podcast.cpp
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    48
SOURCE  PodcastApp.cpp
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    49
SOURCE  PodcastAppui.cpp 
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    50
SOURCE  PodcastDocument.cpp
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    51
SOURCE  PodcastListView.cpp
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    52
SOURCE  PodcastFeedView.cpp
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    53
SOURCE  PodcastSettingsView.cpp
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    54
SOURCE  PodcastShowsView.cpp
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    55
SOURCE  PodcastSearchView.cpp
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    56
SOURCE  PodcastFeedViewUpdater.cpp 
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    57
SOURCE  PodcastQueueView.cpp
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    58
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    59
SOURCEPATH ..\data
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    60
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    61
START RESOURCE Podcast.rss
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    62
	HEADER
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    63
	TARGETPATH resource\apps
144
b4be6bc78573 Spanish translation for podcatcher - BUG 2059
victorp@symbian.org
parents: 134
diff changeset
    64
	LANG 01 04
2
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    65
END
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    66
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    67
START RESOURCE Podcast_reg.rss
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    68
LANG SC
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    69
#ifdef WINSCW
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    70
TARGETPATH 	  \private\10003a3f\apps
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    71
#else
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    72
TARGETPATH 	  \private\10003a3f\import\apps
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    73
#endif
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    74
END
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    75
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    76
LIBRARY PodCastEngine.lib
116
a2e43aa1ad11 Fixed DEF files. Tested with Qt SQLite.
teknolog
parents: 104
diff changeset
    77
LIBRARY sqlite3.lib
2
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    78
LIBRARY	euser.lib 
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    79
LIBRARY	apparc.lib
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    80
LIBRARY	cone.lib
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    81
LIBRARY	eikcore.lib 
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    82
LIBRARY eikcoctl.lib
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    83
LIBRARY avkon.lib
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    84
LIBRARY	egul.lib    // for CGulIcon
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    85
LIBRARY	bafl.lib
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    86
LIBRARY	eikdlg.lib
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    87
LIBRARY eikcdlg.lib
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    88
LIBRARY	efsrv.lib
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    89
LIBRARY	aknicon.lib
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    90
LIBRARY	gdi.lib
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    91
LIBRARY eikctl.lib 
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    92
LIBRARY	charconv.lib
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    93
LIBRARY	flogger.lib
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    94
LIBRARY	apmime.lib 
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    95
LIBRARY	estor.lib 
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    96
LIBRARY apgrfx.lib
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    97
LIBRARY CommonDialogs.lib
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    98
LIBRARY aknskins.lib 
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    99
LIBRARY fbscli.lib
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   100
LIBRARY etext.lib  
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   101
LIBRARY PlatformEnv.lib // for PathInfo
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   102
LIBRARY form.lib 
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   103
LIBRARY ws32.lib 
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   104
LIBRARY hlplch.lib
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   105
LIBRARY bitgdi.lib 
126
c2f1ea38ec70 Import from FCL default branch
teknolog
parents: 125
diff changeset
   106
LIBRARY cmmanager.lib