author | larspson |
Wed, 13 Oct 2010 13:47:30 +0200 | |
branch | podcatcher_qt_symbian4 |
changeset 229 | a12ea4c1b5b6 |
parent 208 | 03b26379213d |
child 218 | 2fd795b1e1b1 |
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 |
||
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
|
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:
187
diff
changeset
|
20 |
#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:
187
diff
changeset
|
21 |
|
2 | 22 |
TARGET podcastengine.dll |
23 |
TARGETTYPE DLL |
|
24 |
UID 0x1000008d 0xA11F867F |
|
25 |
||
26 |
SOURCEPATH ..\src |
|
27 |
USERINCLUDE ..\inc |
|
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 |
|
34 |
SOURCE HttpClient.cpp |
|
35 |
SOURCE HttpEventHandler.cpp |
|
36 |
SOURCE FeedParser.cpp |
|
37 |
SOURCE FeedEngine.cpp |
|
38 |
SOURCE ShowInfo.cpp |
|
39 |
SOURCE FeedInfo.cpp |
|
40 |
SOURCE FeedTimer.cpp |
|
41 |
SOURCE ShowEngine.cpp |
|
42 |
SOURCE SettingsEngine.cpp |
|
43 |
SOURCE MetaDataReader.cpp |
|
44 |
SOURCE OpmlParser.cpp |
|
45 |
SOURCE PodcastUtils.cpp |
|
46 |
SOURCE PodCastModel.cpp |
|
47 |
SOURCE ImageHandler.cpp |
|
48 |
SOURCE ConnectionEngine.cpp |
|
49 |
||
50 |
LIBRARY sqlite3.lib |
|
51 |
LIBRARY euser.lib |
|
52 |
LIBRARY bafl.lib |
|
53 |
LIBRARY efsrv.lib |
|
54 |
LIBRARY mediaclientaudio.lib |
|
55 |
LIBRARY inetprotutil.lib |
|
56 |
LIBRARY charconv.lib |
|
57 |
LIBRARY xmlframework.lib |
|
58 |
LIBRARY http.lib |
|
59 |
LIBRARY flogger.lib |
|
60 |
LIBRARY ezlib.lib |
|
61 |
LIBRARY estor.lib |
|
62 |
LIBRARY commdb.lib |
|
63 |
LIBRARY esock.lib |
|
64 |
LIBRARY mmfcontrollerframework.lib |
|
65 |
LIBRARY apgrfx.lib |
|
66 |
LIBRARY cone.lib |
|
67 |
LIBRARY apmime.lib |
|
68 |
LIBRARY cmmanager.lib |
|
69 |
LIBRARY fbscli.lib |
|
70 |
LIBRARY imageconversion.lib |
|
71 |
LIBRARY bitmaptransforms.lib |
|
91
87cb33beeae2
Remove icon index. Start caching icons as mbms.
Lars Persson <lars.persson@embeddev.se>
parents:
2
diff
changeset
|
72 |
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
|
73 |
#ifdef ENABLE_MPX_INTEGRATION |
126 | 74 |
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
|
75 |
#endif |
133
5f9e7e14eb11
Merged playback functionality from FCL Symbian1 branch
teknolog
parents:
126
diff
changeset
|
76 |
LIBRARY commonui.lib // CDocumentHandler |
5f9e7e14eb11
Merged playback functionality from FCL Symbian1 branch
teknolog
parents:
126
diff
changeset
|
77 |
LIBRARY apparc.lib |
5f9e7e14eb11
Merged playback functionality from FCL Symbian1 branch
teknolog
parents:
126
diff
changeset
|
78 |
LIBRARY avkon.lib |
187 | 79 |
LIBRARY centralrepository.lib |
126 | 80 |
|
202
e1dedb07817d
Tweaks to capabilities in DLL to enable self signing; Opening RCL_3 branch.
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
200
diff
changeset
|
81 |
#ifdef ENABLE_MPX_INTEGRATION |
e1dedb07817d
Tweaks to capabilities in DLL to enable self signing; Opening RCL_3 branch.
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
200
diff
changeset
|
82 |
CAPABILITY NetworkServices UserEnvironment WriteUserData ReadDeviceData WriteDeviceData MultimediaDD |
208
03b26379213d
Slighty improved capability switch
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
202
diff
changeset
|
83 |
MACRO ENABLE_MPX_INTEGRATION |
202
e1dedb07817d
Tweaks to capabilities in DLL to enable self signing; Opening RCL_3 branch.
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
200
diff
changeset
|
84 |
#else |
e1dedb07817d
Tweaks to capabilities in DLL to enable self signing; Opening RCL_3 branch.
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
200
diff
changeset
|
85 |
CAPABILITY NetworkServices UserEnvironment |
208
03b26379213d
Slighty improved capability switch
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
202
diff
changeset
|
86 |
#endif |