|
1 # |
|
2 # Copyright (c) 2010 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 TEMPLATE = app |
|
18 TARGET = FileBrowser |
|
19 DEPENDPATH += . |
|
20 INCLUDEPATH += ./inc |
|
21 load(hb.prf) |
|
22 symbian:CONFIG -= symbian_i18n |
|
23 |
|
24 HEADERS += ./inc/filebrowsermainwindow.h \ |
|
25 ./inc/filebrowserview.h \ |
|
26 ./inc/filebrowsermodel.h \ |
|
27 ./inc/menuaction.h \ |
|
28 ./inc/filebrowsersettings.h \ |
|
29 ./inc/settingsview.h \ |
|
30 ./inc/editorview.h \ |
|
31 ./inc/searchview.h \ |
|
32 ./inc/enginewrapper.h \ |
|
33 ./inc/notifications.h \ |
|
34 ./inc/fileentry.h \ |
|
35 ./inc/driveentry.h |
|
36 SOURCES += ./src/main.cpp \ |
|
37 ./src/filebrowsermainwindow.cpp \ |
|
38 ./src/filebrowserview.cpp \ |
|
39 ./src/filebrowsermodel.cpp \ |
|
40 ./src/settingsview.cpp \ |
|
41 ./src/editorview.cpp \ |
|
42 ./src/searchview.cpp \ |
|
43 ./src/enginewrapper.cpp \ |
|
44 ./src/notifications.cpp \ |
|
45 ./src/fileentry.cpp \ |
|
46 ./src/driveentry.cpp |
|
47 RESOURCES += ./ui.qrc |
|
48 |
|
49 symbian { |
|
50 INCLUDEPATH += ../ |
|
51 LIBS += -leikcore \ |
|
52 -lcommonengine \ |
|
53 -ltzclient \ |
|
54 -lapmime \ |
|
55 -lcommonui \ |
|
56 -leuser \ |
|
57 -lapparc \ |
|
58 -lcone \ |
|
59 -lws32 \ |
|
60 -lfbscli \ |
|
61 -lImageConversion \ |
|
62 -lPlatformEnv \ |
|
63 -lCommonDialogs \ |
|
64 -leikcoctl \ |
|
65 -lapgrfx \ |
|
66 -lefsrv \ |
|
67 -lbafl \ |
|
68 -lCentralRepository \ |
|
69 -lmediaclientaudio \ |
|
70 -lestor \ |
|
71 -lgdi \ |
|
72 -leikctl \ |
|
73 -leikcdlg \ |
|
74 -leikdlg \ |
|
75 -legul \ |
|
76 -lsendui \ |
|
77 -lmsgs \ |
|
78 -lezlib \ |
|
79 -lcdlengine \ |
|
80 -lremconcoreapi \ |
|
81 -lremconinterfacebase \ |
|
82 -lsbeclient \ |
|
83 -lhash \ |
|
84 -letext \ |
|
85 -lcharconv \ |
|
86 #ifndef FILEBROWSER_LITE |
|
87 -lfilebrowserfileopclient |
|
88 #endif" |
|
89 |
|
90 INCLUDEPATH += $$APP_LAYER_SYSTEMINCLUDE |
|
91 |
|
92 HEADERS += ../engine/engine.h \ |
|
93 ../engine/FBFileUtils.h \ |
|
94 ../engine/FBFileOps.h \ |
|
95 ../engine/FB.hrh \ |
|
96 ../engine/FBStd.h \ |
|
97 ../engine/FBTraces.h \ |
|
98 #ifndef FILEBROWSER_LITE |
|
99 ../fileopclient\inc\FBFileOpClient.h |
|
100 #endif |
|
101 SOURCES += ../engine/engine.cpp \ |
|
102 ../engine/FBFileUtils.cpp \ |
|
103 ../engine/FBFileOps.cpp |
|
104 RSS_RULES += "group_name = \"RnD Tools\";" |
|
105 TARGET.CAPABILITY = NetworkServices LocalServices CAP_APPLICATION AllFiles DiskAdmin |
|
106 TARGET.UID3 = 0xE85157B0 |
|
107 TARGET.VID = 0x101FB657 // Nokia |
|
108 TARGET.EPOCHEAPSIZE = 0x20000 0x4000000 // Min 128Kb, Max 64Mb |
|
109 ICON = ../icons/qgn_menu_filebrowser.svg |
|
110 } else { |
|
111 error("Only Symbian supported!") |
|
112 } |
|
113 |