screengrabber/screengrabber.pro
changeset 15 e11368ed4880
child 17 4f2773374eff
equal deleted inserted replaced
11:4df3a095718c 15:e11368ed4880
       
     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 
       
    18 
       
    19 TEMPLATE = app
       
    20 TARGET = ScreenGrabber
       
    21 DEPENDPATH += src
       
    22 INCLUDEPATH += inc
       
    23 INCLUDEPATH += $$APP_LAYER_SYSTEMINCLUDE
       
    24 CONFIG += hb
       
    25 
       
    26 HEADERS += inc/mainview.h \
       
    27 					 inc/settingsview.h \
       
    28 					 inc/application.h \
       
    29 					 inc/notifications.h
       
    30 
       
    31 SOURCES += main.cpp \
       
    32 					 mainview.cpp \
       
    33 					 application.cpp \
       
    34 					 settingsview.cpp \
       
    35 					 notifications.cpp 
       
    36 
       
    37 symbian: {
       
    38 
       
    39 		LIBS += -lestor -lws32 -lPlatformEnv -limageconversion  -lapgrfx -lcommonengine  -lfbscli -lgdi -leikcore -lbafl
       
    40 
       
    41 		HEADERS += inc/sgengine.h \
       
    42    				   inc/enginewrapper.h \
       
    43 				   inc/gifanimator.h
       
    44 
       
    45 		SOURCES += sgengine.cpp \
       
    46 				   enginewrapper.cpp \
       
    47 				   gifanimator.cpp
       
    48 
       
    49 		RSS_RULES += "group_name = \"RnD Tools\"";
       
    50 
       
    51     TARGET.CAPABILITY = WriteDeviceData SwEvent
       
    52 
       
    53     TARGET.UID2 = 0x100039CE
       
    54     TARGET.UID3 = 0x101FB751
       
    55     TARGET.SID = 0x101FB751
       
    56     TARGET.VID = 0x101FB657 // Nokia
       
    57 	
       
    58 	
       
    59     TARGET.EPOCHEAPSIZE = 0x20000 0x1000000  // Min 128Kb, Max 16Mb
       
    60 
       
    61     ICON = ./icons/qgn_menu_screengrabber.svg 
       
    62 	
       
    63 		BLD_INF_RULES.prj_exports += \
       
    64     "./rom/screengrabber.iby CORE_IBY_EXPORT_PATH(tools,screengrabber.iby)
       
    65 
       
    66 
       
    67 } else {
       
    68     error("Only Symbian supported!")
       
    69 }