contentstorage/cahandler/app/tsrc/t_caapphandler/t_caapphandler.pro
changeset 117 c63ee96dbe5f
equal deleted inserted replaced
115:3ab5c078b490 117:c63ee96dbe5f
       
     1 # Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 # All rights reserved.
       
     3 # This component and the accompanying materials are made available
       
     4 # under the terms of "Eclipse Public License v1.0"
       
     5 # which accompanies this distribution, and is available
       
     6 # at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 # Initial Contributors:
       
     8 # Nokia Corporation - initial contribution.
       
     9 # Contributors:
       
    10 # Description:
       
    11 
       
    12 
       
    13 TEMPLATE = app
       
    14 
       
    15 CONFIG += hb mobility
       
    16 MOBILITY = serviceframework
       
    17 HB = hbcore
       
    18 
       
    19 include(../../../../../common.pri)
       
    20 include(../../../../tsrc/testutils/testutils.pri)
       
    21 CONFIG(debug, debug|release) {
       
    22     DESTDIR = debug
       
    23 } else {
       
    24     DESTDIR = release
       
    25 }
       
    26 
       
    27 CONFIG += debug_and_release \
       
    28     console
       
    29 QT += testlib
       
    30 	
       
    31 
       
    32 coverage:DEFINES += COVERAGE_MEASUREMENT
       
    33 
       
    34 DEPENDPATH += . \
       
    35     ./inc \
       
    36     ./src \
       
    37     ../../inc \
       
    38     ../../src
       
    39 	
       
    40 INCLUDEPATH += \
       
    41     ./inc \
       
    42 	../../inc \
       
    43 	../../../../cautils/inc \
       
    44 	../../../../castorage/inc \
       
    45     ../../../../caclient/inc \
       
    46     ../../../../inc \
       
    47     $$MW_LAYER_SYSTEMINCLUDE
       
    48 
       
    49 include(t_caapphandler.pri)
       
    50 		
       
    51 symbian: { 
       
    52 
       
    53     CONFIG += symbian_test
       
    54     coverage: CONFIG -= symbian_test
       
    55     ### get rid of localization warnings
       
    56     CONFIG -= hb
       
    57     load(hb.prf)
       
    58     CONFIG -= symbian_i18n
       
    59     ###
       
    60     TARGET.UID2 = 0x10009D8D
       
    61     TARGET.UID3 = 0x20028711
       
    62     TARGET.CAPABILITY = ALL \
       
    63         -TCB
       
    64     TARGET.EPOCSTACKSIZE = 0x14000 \
       
    65         // \
       
    66         80kB
       
    67     TARGET.EPOCHEAPSIZE = 0x20000 \
       
    68         0x1000000 \
       
    69         // \
       
    70         128kB \
       
    71         - \
       
    72         16MB
       
    73 	
       
    74 	LIBS += \
       
    75         -leuser \
       
    76         -lecom \
       
    77         -lcautils \
       
    78         -lapgrfx \
       
    79         -lws32 \
       
    80         -lapparc \
       
    81         -lsisregistryclient \
       
    82         -lsif \
       
    83         -lscrclient \
       
    84         -lxqutils \
       
    85         -lefsrv \
       
    86         -lcone \
       
    87         -lcaclient
       
    88     
       
    89     BLD_INF_RULES.prj_testexports += "./data/winscw/sapiapp_S60_3_X_v_1_0_0.sisx c:/testing/data/t_caapphandler/installs/" \
       
    90      "./data/winscw/Hello.jar c:/testing/data/t_caapphandler/installs/"
       
    91 
       
    92     BLD_INF_RULES.prj_exports += "./data/winscw/sapiapp_S60_3_X_v_1_0_0.sisx c:/testing/data/t_caapphandler/installs/" \
       
    93      "./data/winscw/Hello.jar c:/testing/data/t_caapphandler/installs/"
       
    94      
       
    95     exportArmSis.sources += ./data/armv5/sapiapp_S60_3_X_v_1_0_0.sisx \
       
    96         ./data/winscw/Hello.jar
       
    97 	exportArmSis.path = c:/testing/data/t_caapphandler/installs
       
    98 	DEPLOYMENT += exportArmSis	
       
    99 }
       
   100 
       
   101