21
|
1 |
/*
|
|
2 |
* Copyright (c) 2002-2008 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: Project specification of FileManager
|
|
15 |
*
|
|
16 |
*/
|
|
17 |
|
|
18 |
|
|
19 |
#include <platform_paths.hrh>
|
|
20 |
#include <data_caging_paths.hrh>
|
|
21 |
#include "FileManagerUID.h"
|
|
22 |
MACRO _F32_STRICT_64_BIT_MIGRATION
|
|
23 |
|
|
24 |
TARGET filemanager.exe
|
|
25 |
TARGETTYPE exe
|
|
26 |
EPOCSTACKSIZE 0x5000
|
|
27 |
EPOCHEAPSIZE 0x20000 0x800000 // Min 128KB, Max 8MB
|
|
28 |
UID KEPOCAppUID2 KFileManagerUID3
|
|
29 |
|
|
30 |
VENDORID VID_DEFAULT
|
|
31 |
CAPABILITY CAP_APPLICATION DiskAdmin AllFiles PowerMgmt
|
|
32 |
|
|
33 |
SOURCEPATH ../App/src
|
|
34 |
SOURCE CFileManagerApplication.cpp
|
|
35 |
SOURCE CFileManagerDocument.cpp
|
|
36 |
SOURCE CFileManagerAppUi.cpp
|
|
37 |
SOURCE CFileManagerFileSelectionFilter.cpp
|
|
38 |
SOURCE CFileManagerStringCache.cpp
|
|
39 |
SOURCE CFileManagerViewBase.cpp
|
|
40 |
SOURCE CFileManagerContainerBase.cpp
|
|
41 |
SOURCE CFileManagerFileListContainer.cpp
|
|
42 |
SOURCE CFileManagerFoldersView.cpp
|
|
43 |
SOURCE Cfilemanagersearchresultsview.cpp
|
|
44 |
SOURCE CFileManagerMainView.cpp
|
|
45 |
SOURCE CFileManagerMemoryStoreView.cpp
|
|
46 |
#ifdef RD_FILE_MANAGER_BACKUP
|
|
47 |
SOURCE CFileManagerBackupView.cpp
|
|
48 |
SOURCE CFileManagerRestoreView.cpp
|
|
49 |
SOURCE CFileManagerSettingListContainer.cpp
|
|
50 |
SOURCE CFileManagerTaskScheduler.cpp
|
|
51 |
SOURCE CFileManagerSchBackupHandler.cpp
|
|
52 |
#endif // RD_FILE_MANAGER_BACKUP
|
|
53 |
|
|
54 |
START RESOURCE ../data/FileManager.rss
|
|
55 |
TARGETPATH APP_RESOURCE_DIR
|
|
56 |
HEADER
|
|
57 |
LANGUAGE_IDS
|
|
58 |
END
|
|
59 |
|
|
60 |
START RESOURCE ../data/FileManager_reg.rss
|
|
61 |
DEPENDS filemanager.rsg
|
|
62 |
// Do not change the UID below.
|
|
63 |
TARGETPATH /private/10003a3f/apps
|
|
64 |
END
|
|
65 |
|
|
66 |
USERINCLUDE . ../App/inc
|
|
67 |
|
|
68 |
APP_LAYER_SYSTEMINCLUDE
|
|
69 |
SYSTEMINCLUDE . ../View/inc ../Engine/inc
|
|
70 |
|
|
71 |
LIBRARY euser.lib cone.lib apparc.lib
|
|
72 |
LIBRARY eikcore.lib eikctl.lib eikcoctl.lib
|
|
73 |
LIBRARY avkon.lib
|
|
74 |
LIBRARY commonengine.lib
|
|
75 |
LIBRARY filemanagerview.lib filemanagerengine.lib
|
|
76 |
LIBRARY commondialogs.lib
|
|
77 |
LIBRARY bafl.lib
|
|
78 |
LIBRARY sendui.lib
|
|
79 |
LIBRARY memstatepopup.lib
|
|
80 |
LIBRARY hlplch.lib
|
|
81 |
LIBRARY efsrv.lib
|
|
82 |
LIBRARY aknskins.lib
|
|
83 |
LIBRARY gdi.lib
|
|
84 |
LIBRARY drmhelper.lib
|
|
85 |
LIBRARY charconv.lib
|
|
86 |
LIBRARY ecom.lib
|
|
87 |
LIBRARY centralrepository.lib
|
|
88 |
#ifdef RD_FILE_MANAGER_BACKUP
|
|
89 |
LIBRARY ws32.lib
|
|
90 |
LIBRARY schsvr.lib
|
|
91 |
LIBRARY apgrfx.lib
|
|
92 |
LIBRARY eikdlg.lib
|
|
93 |
#endif // RD_FILE_MANAGER_BACKUP
|
|
94 |
LIBRARY caf.lib
|
|
95 |
LIBRARY commonui.lib
|
|
96 |
LIBRARY servicehandler.lib
|
|
97 |
LIBRARY platformenv.lib
|
|
98 |
LIBRARY ssmcmn.lib // state manager
|
|
99 |
|
|
100 |
// End of File
|