author | Sebastian Brannstrom <sebastianb@symbian.org> |
Mon, 01 Nov 2010 11:29:49 +0000 | |
branch | RCL_3 |
changeset 324 | b54ded4e23a3 |
parent 299 | 56d23cf60795 |
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 |
*/ |
|
18 |
||
299
56d23cf60795
Fixes for issues using #define with raptor
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
283
diff
changeset
|
19 |
#include "..\..\group\defines.h" |
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:
187
diff
changeset
|
20 |
|
2 | 21 |
TARGET podcastengine.dll |
22 |
TARGETTYPE DLL |
|
23 |
UID 0x1000008d 0xA11F867F |
|
24 |
||
25 |
SOURCEPATH ..\src |
|
26 |
USERINCLUDE ..\inc |
|
299
56d23cf60795
Fixes for issues using #define with raptor
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
283
diff
changeset
|
27 |
USERINCLUDE ..\..\group |
2 | 28 |
SYSTEMINCLUDE \epoc32\include |
126 | 29 |
SYSTEMINCLUDE \epoc32\include\mw |
30 |
SYSTEMINCLUDE \epoc32\include\platform |
|
31 |
SYSTEMINCLUDE \epoc32\include\platform\mw |
|
32 |
SYSTEMINCLUDE \epoc32\include\stdapis |
|
2 | 33 |
|
299
56d23cf60795
Fixes for issues using #define with raptor
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
283
diff
changeset
|
34 |
#ifdef ENABLE_MPX_INTEGRATION |
56d23cf60795
Fixes for issues using #define with raptor
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
283
diff
changeset
|
35 |
CAPABILITY NetworkServices UserEnvironment WriteUserData ReadDeviceData WriteDeviceData MultimediaDD |
56d23cf60795
Fixes for issues using #define with raptor
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
283
diff
changeset
|
36 |
#else |
56d23cf60795
Fixes for issues using #define with raptor
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
283
diff
changeset
|
37 |
CAPABILITY NetworkServices UserEnvironment |
56d23cf60795
Fixes for issues using #define with raptor
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
283
diff
changeset
|
38 |
#endif |
56d23cf60795
Fixes for issues using #define with raptor
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
283
diff
changeset
|
39 |
|
2 | 40 |
SOURCE HttpClient.cpp |
41 |
SOURCE HttpEventHandler.cpp |
|
42 |
SOURCE FeedParser.cpp |
|
43 |
SOURCE FeedEngine.cpp |
|
44 |
SOURCE ShowInfo.cpp |
|
45 |
SOURCE FeedInfo.cpp |
|
46 |
SOURCE FeedTimer.cpp |
|
47 |
SOURCE ShowEngine.cpp |
|
48 |
SOURCE SettingsEngine.cpp |
|
49 |
SOURCE MetaDataReader.cpp |
|
50 |
SOURCE OpmlParser.cpp |
|
51 |
SOURCE PodcastUtils.cpp |
|
52 |
SOURCE PodCastModel.cpp |
|
53 |
SOURCE ImageHandler.cpp |
|
54 |
SOURCE ConnectionEngine.cpp |
|
55 |
||
56 |
LIBRARY sqlite3.lib |
|
57 |
LIBRARY euser.lib |
|
58 |
LIBRARY bafl.lib |
|
59 |
LIBRARY efsrv.lib |
|
60 |
LIBRARY mediaclientaudio.lib |
|
61 |
LIBRARY inetprotutil.lib |
|
62 |
LIBRARY charconv.lib |
|
63 |
LIBRARY xmlframework.lib |
|
64 |
LIBRARY http.lib |
|
65 |
LIBRARY flogger.lib |
|
66 |
LIBRARY ezlib.lib |
|
67 |
LIBRARY estor.lib |
|
68 |
LIBRARY commdb.lib |
|
69 |
LIBRARY esock.lib |
|
70 |
LIBRARY mmfcontrollerframework.lib |
|
71 |
LIBRARY apgrfx.lib |
|
72 |
LIBRARY cone.lib |
|
73 |
LIBRARY apmime.lib |
|
74 |
LIBRARY cmmanager.lib |
|
75 |
LIBRARY fbscli.lib |
|
76 |
LIBRARY imageconversion.lib |
|
77 |
LIBRARY bitmaptransforms.lib |
|
91
87cb33beeae2
Remove icon index. Start caching icons as mbms.
Lars Persson <lars.persson@embeddev.se>
parents:
2
diff
changeset
|
78 |
LIBRARY eikcore.lib |
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:
187
diff
changeset
|
79 |
#ifdef ENABLE_MPX_INTEGRATION |
126 | 80 |
LIBRARY mpxcollectionhelper.lib |
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:
187
diff
changeset
|
81 |
#endif |
133
5f9e7e14eb11
Merged playback functionality from FCL Symbian1 branch
teknolog
parents:
126
diff
changeset
|
82 |
LIBRARY commonui.lib // CDocumentHandler |
5f9e7e14eb11
Merged playback functionality from FCL Symbian1 branch
teknolog
parents:
126
diff
changeset
|
83 |
LIBRARY apparc.lib |
5f9e7e14eb11
Merged playback functionality from FCL Symbian1 branch
teknolog
parents:
126
diff
changeset
|
84 |
LIBRARY avkon.lib |
187 | 85 |
LIBRARY centralrepository.lib |
256
572d166c9421
Merged fix for bug 3843
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
236
diff
changeset
|
86 |
LIBRARY sysutil.lib |