author | Sebastian Brannstrom <sebastianb@symbian.org> |
Tue, 19 Oct 2010 12:53:24 +0100 | |
branch | RCL_3 |
changeset 256 | 572d166c9421 |
parent 236 | f952f3a1a786 |
child 264 | 6dfdf1d9da5c |
permissions | -rw-r--r-- |
2 | 1 |
/* |
2 |
* Copyright (c) 2007-2010 Sebastian Brannstrom, Lars Persson, EmbedDev AB |
|
3 |
* |
|
4 |
* All rights reserved. |
|
5 |
* This component and the accompanying materials are made available |
|
6 |
* under the terms of the License "Eclipse Public License v1.0" |
|
7 |
* which accompanies this distribution, and is available |
|
8 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
9 |
* |
|
10 |
* Initial Contributors: |
|
11 |
* EmbedDev AB - initial contribution. |
|
12 |
* |
|
13 |
* Contributors: |
|
14 |
* |
|
15 |
* Description: |
|
16 |
* |
|
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 |
|
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
|
19 |
// MPX integration can not be enabled for self signed versions |
236
f952f3a1a786
Fix for bug 3619 - re-enable MPX integration by default
teknolog
parents:
218
diff
changeset
|
20 |
#define ENABLE_MPX_INTEGRATION |
23
cf4b850bbffb
Added macro SYMBIAN1_UI that toggles between single and double tap UI
teknolog
parents:
2
diff
changeset
|
21 |
|
2 | 22 |
TARGET Podcast.exe |
23 |
TARGETTYPE exe |
|
24 |
UID 0x100039CE 0xA0009D00 |
|
25 |
||
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
|
26 |
#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
|
27 |
CAPABILITY NetworkServices UserEnvironment WriteUserData ReadDeviceData WriteDeviceData MultimediaDD |
208
03b26379213d
Slighty improved capability switch
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
200
diff
changeset
|
28 |
MACRO ENABLE_MPX_INTEGRATION |
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
|
29 |
#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
|
30 |
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
|
31 |
#endif |
2 | 32 |
|
33 |
EPOCSTACKSIZE 81920 |
|
34 |
EPOCHEAPSIZE 1024000 32768000 |
|
35 |
||
36 |
SYSTEMINCLUDE \epoc32\include |
|
37 |
SYSTEMINCLUDE \epoc32\include\mmf\common |
|
38 |
SYSTEMINCLUDE \epoc32\include\mw // for Symbian^3 |
|
39 |
SYSTEMINCLUDE \epoc32\include\platform\mw // for Symbian^3 |
|
126 | 40 |
SYSTEMINCLUDE \epoc32\include\platform |
116 | 41 |
SYSTEMINCLUDE \epoc32\include\stdapis |
42 |
||
2 | 43 |
USERINCLUDE ..\..\engine\inc |
44 |
USERINCLUDE . |
|
45 |
USERINCLUDE ..\inc |
|
46 |
||
47 |
SOURCEPATH ..\src |
|
48 |
SOURCE Podcast.cpp |
|
49 |
SOURCE PodcastApp.cpp |
|
50 |
SOURCE PodcastAppui.cpp |
|
51 |
SOURCE PodcastDocument.cpp |
|
52 |
SOURCE PodcastListView.cpp |
|
53 |
SOURCE PodcastFeedView.cpp |
|
54 |
SOURCE PodcastSettingsView.cpp |
|
55 |
SOURCE PodcastShowsView.cpp |
|
56 |
SOURCE PodcastSearchView.cpp |
|
57 |
SOURCE PodcastFeedViewUpdater.cpp |
|
58 |
SOURCE PodcastQueueView.cpp |
|
59 |
||
60 |
||
61 |
SOURCEPATH ..\data |
|
62 |
||
63 |
START RESOURCE Podcast.rss |
|
64 |
HEADER |
|
65 |
TARGETPATH resource\apps |
|
144
b4be6bc78573
Spanish translation for podcatcher - BUG 2059
victorp@symbian.org
parents:
134
diff
changeset
|
66 |
LANG 01 04 |
2 | 67 |
END |
68 |
||
69 |
START RESOURCE Podcast_reg.rss |
|
70 |
LANG SC |
|
71 |
#ifdef WINSCW |
|
72 |
TARGETPATH \private\10003a3f\apps |
|
73 |
#else |
|
74 |
TARGETPATH \private\10003a3f\import\apps |
|
75 |
#endif |
|
76 |
END |
|
77 |
||
78 |
LIBRARY PodCastEngine.lib |
|
116 | 79 |
LIBRARY sqlite3.lib |
2 | 80 |
LIBRARY euser.lib |
81 |
LIBRARY apparc.lib |
|
82 |
LIBRARY cone.lib |
|
83 |
LIBRARY eikcore.lib |
|
84 |
LIBRARY eikcoctl.lib |
|
85 |
LIBRARY avkon.lib |
|
86 |
LIBRARY egul.lib // for CGulIcon |
|
87 |
LIBRARY bafl.lib |
|
88 |
LIBRARY eikdlg.lib |
|
89 |
LIBRARY eikcdlg.lib |
|
90 |
LIBRARY efsrv.lib |
|
91 |
LIBRARY aknicon.lib |
|
92 |
LIBRARY gdi.lib |
|
93 |
LIBRARY eikctl.lib |
|
94 |
LIBRARY charconv.lib |
|
95 |
LIBRARY flogger.lib |
|
96 |
LIBRARY apmime.lib |
|
97 |
LIBRARY estor.lib |
|
98 |
LIBRARY apgrfx.lib |
|
99 |
LIBRARY CommonDialogs.lib |
|
100 |
LIBRARY aknskins.lib |
|
101 |
LIBRARY fbscli.lib |
|
102 |
LIBRARY etext.lib |
|
103 |
LIBRARY PlatformEnv.lib // for PathInfo |
|
104 |
LIBRARY form.lib |
|
105 |
LIBRARY ws32.lib |
|
106 |
LIBRARY hlplch.lib |
|
107 |
LIBRARY bitgdi.lib |
|
126 | 108 |
LIBRARY cmmanager.lib |