22
|
1 |
/*
|
|
2 |
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
|
3 |
* All rights reserved.
|
|
4 |
* This component and the accompanying materials are made available
|
|
5 |
* under the terms of "Eclipse Public License v1.0"
|
|
6 |
* which accompanies this distribution, and is available
|
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
|
8 |
*
|
|
9 |
* Initial Contributors:
|
|
10 |
* Nokia Corporation - initial contribution.
|
|
11 |
*
|
|
12 |
* Contributors:
|
|
13 |
*
|
|
14 |
* Description:
|
|
15 |
*
|
|
16 |
*/
|
|
17 |
|
|
18 |
|
|
19 |
#include <data_caging_paths.hrh>
|
|
20 |
#include <platform_paths.hrh>
|
|
21 |
#include "../symbian_version.hrh"
|
|
22 |
|
|
23 |
|
|
24 |
TARGET Launcher.exe
|
|
25 |
TARGETTYPE exe
|
|
26 |
EPOCSTACKSIZE 0x5000
|
|
27 |
EPOCHEAPSIZE 0x10000 0x1000000 // Min 64Kb, Max 16Mb
|
|
28 |
|
|
29 |
UID 0x100039CE 0x101FB74F
|
|
30 |
|
|
31 |
VENDORID VID_DEFAULT
|
|
32 |
CAPABILITY ReadUserData ReadDeviceData WriteUserData WriteDeviceData PowerMgmt AllFiles
|
|
33 |
|
|
34 |
SMPSAFE
|
|
35 |
|
|
36 |
LANG SC
|
|
37 |
|
|
38 |
|
|
39 |
START RESOURCE ../data/launcher.rss
|
|
40 |
HEADER
|
|
41 |
TARGETPATH APP_RESOURCE_DIR
|
|
42 |
END
|
|
43 |
|
|
44 |
START RESOURCE ../data/launcher_reg.rss
|
|
45 |
DEPENDS launcher.rsg
|
|
46 |
TARGETPATH /private/10003a3f/apps
|
|
47 |
END
|
|
48 |
|
|
49 |
APP_LAYER_SYSTEMINCLUDE
|
|
50 |
USERINCLUDE ../inc
|
|
51 |
SOURCEPATH ../src
|
|
52 |
|
|
53 |
|
|
54 |
SOURCE launcher.cpp
|
|
55 |
SOURCE launcherapplication.cpp
|
|
56 |
SOURCE launcherdocument.cpp
|
|
57 |
SOURCE launcherappui.cpp
|
|
58 |
SOURCE launcherviewapps.cpp
|
|
59 |
SOURCE launcherviewoutput.cpp
|
|
60 |
SOURCE launchercontaineroutput.cpp
|
|
61 |
SOURCE launchercontainerapps.cpp
|
|
62 |
SOURCE launcherengine.cpp
|
|
63 |
SOURCE e32image.cpp
|
|
64 |
SOURCE launcherxmlparser.cpp
|
|
65 |
SOURCE launcherdllelement.cpp
|
|
66 |
SOURCE launcherdllparser.cpp
|
|
67 |
|
|
68 |
LIBRARY euser.lib
|
|
69 |
LIBRARY apparc.lib
|
|
70 |
LIBRARY cone.lib
|
|
71 |
LIBRARY eikcore.lib
|
|
72 |
LIBRARY avkon.lib
|
|
73 |
LIBRARY efsrv.lib
|
|
74 |
LIBRARY apgrfx.lib
|
|
75 |
LIBRARY ws32.lib
|
|
76 |
LIBRARY bafl.lib
|
|
77 |
LIBRARY eikcoctl.lib
|
|
78 |
LIBRARY eikctl.lib
|
|
79 |
LIBRARY aknnotify.lib
|
|
80 |
LIBRARY egul.lib
|
|
81 |
LIBRARY aknicon.lib
|
|
82 |
LIBRARY flogger.lib
|
|
83 |
LIBRARY platformenv.lib
|
|
84 |
LIBRARY aknskins.lib
|
|
85 |
LIBRARY aknskinsrv.lib
|
|
86 |
LIBRARY aknswallpaperutils.lib
|
|
87 |
LIBRARY gdi.lib
|
|
88 |
LIBRARY xmlframework.lib
|
|
89 |
LIBRARY charconv.lib
|
|
90 |
LIBRARY commondialogs.lib
|
|
91 |
#if ( SYMBIAN_VERSION_SUPPORT < SYMBIAN_4 )
|
|
92 |
LIBRARY sendui.lib
|
|
93 |
#endif
|
|
94 |
|
|
95 |
// End of File
|