#
# Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
# All rights reserved.
# This component and the accompanying materials are made available
# under the terms of "Eclipse Public License v1.0"
# which accompanies this distribution, and is available
# at the URL "http://www.eclipse.org/legal/epl-v10.html".
#
# Initial Contributors:
# Nokia Corporation - initial contribution.
#
# Contributors:
#
# Description:
#
#
TEMPLATE = app
TARGET = FileBrowser
DEPENDPATH += .
INCLUDEPATH += ./inc
load(hb.prf)
symbian:CONFIG -= symbian_i18n
HEADERS += ./inc/filebrowsermainwindow.h \
./inc/filebrowserview.h \
./inc/filebrowsermodel.h \
./inc/menuaction.h \
./inc/filebrowsersettings.h \
./inc/settingsview.h \
./inc/editorview.h \
./inc/searchview.h \
./inc/enginewrapper.h \
./inc/notifications.h \
./inc/fileentry.h \
./inc/driveentry.h
SOURCES += ./src/main.cpp \
./src/filebrowsermainwindow.cpp \
./src/filebrowserview.cpp \
./src/filebrowsermodel.cpp \
./src/settingsview.cpp \
./src/editorview.cpp \
./src/searchview.cpp \
./src/enginewrapper.cpp \
./src/notifications.cpp \
./src/fileentry.cpp \
./src/driveentry.cpp
RESOURCES += ./ui.qrc
symbian {
INCLUDEPATH += ../
LIBS += -leikcore \
-lcommonengine \
-ltzclient \
-lapmime \
-lcommonui \
-leuser \
-lapparc \
-lcone \
-lws32 \
-lfbscli \
-lImageConversion \
-lPlatformEnv \
-lCommonDialogs \
-leikcoctl \
-lapgrfx \
-lefsrv \
-lbafl \
-lCentralRepository \
-lmediaclientaudio \
-lestor \
-lgdi \
-leikctl \
-leikcdlg \
-leikdlg \
-legul \
-lsendui \
-lmsgs \
-lezlib \
-lcdlengine \
-lremconcoreapi \
-lremconinterfacebase \
-lsbeclient \
-lhash \
-letext \
-lcharconv \
#ifndef FILEBROWSER_LITE
-lfilebrowserfileopclient
#endif"
INCLUDEPATH += $$APP_LAYER_SYSTEMINCLUDE
HEADERS += ../engine/engine.h \
../engine/FBFileUtils.h \
../engine/FBFileOps.h \
../engine/FB.hrh \
../engine/FBStd.h \
../engine/FBTraces.h \
#ifndef FILEBROWSER_LITE
../fileopclient\inc\FBFileOpClient.h
#endif
SOURCES += ../engine/engine.cpp \
../engine/FBFileUtils.cpp \
../engine/FBFileOps.cpp
RSS_RULES += "group_name = \"RnD Tools\";"
TARGET.CAPABILITY = NetworkServices LocalServices CAP_APPLICATION AllFiles DiskAdmin
TARGET.UID3 = 0xE85157B0
TARGET.VID = 0x101FB657 // Nokia
TARGET.EPOCHEAPSIZE = 0x20000 0x4000000 // Min 128Kb, Max 64Mb
ICON = ../icons/qgn_menu_filebrowser.svg
} else {
error("Only Symbian supported!")
}