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