contentstorage/tsrc/t_casrv/t_casrv.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 include(../../../common.pri)
       
    16 
       
    17 CONFIG(debug, debug|release) {
       
    18     DESTDIR = debug
       
    19 } else {
       
    20     DESTDIR = release
       
    21 }
       
    22 CONFIG += HB
       
    23 CONFIG += debug_and_release \
       
    24     console
       
    25 QT += testlib
       
    26     
       
    27 DEFINES += CONTENT_ARSENAL_STORAGE_UT
       
    28 coverage:DEFINES += COVERAGE_MEASUREMENT
       
    29 
       
    30 DEPENDPATH += . \
       
    31     ./inc \
       
    32     ./src
       
    33     
       
    34 INCLUDEPATH += . \
       
    35     ./inc \
       
    36     ../../inc \
       
    37     ../../../homescreensrv_plat/contentstorage_api \
       
    38     ../../srvinc \
       
    39     ../../extinc \
       
    40     ../../cautils/inc \
       
    41     ../../casrv/casrvmgr/inc   \
       
    42     ../../castorage/inc \
       
    43     ../../../srvinc  \
       
    44     $$MW_LAYER_SYSTEMINCLUDE
       
    45 
       
    46 include(t_casrv.pri)
       
    47         
       
    48 symbian: { 
       
    49     ### get rid of localization warnings
       
    50     CONFIG -= hb
       
    51     load(hb.prf)
       
    52     CONFIG -= symbian_i18n
       
    53     ###
       
    54     CONFIG += symbian_test
       
    55     coverage: CONFIG -= symbian_test
       
    56 
       
    57     TARGET.UID2 = 0x10009D8D
       
    58     TARGET.UID3 = 0x2002870D
       
    59     TARGET.CAPABILITY = ALL \
       
    60         -TCB
       
    61     TARGET.EPOCSTACKSIZE = 0x14000 \
       
    62         // \
       
    63         80kB
       
    64     TARGET.EPOCHEAPSIZE = 0x20000 \
       
    65         0x1000000 \
       
    66         // \
       
    67         128kB \
       
    68         - \
       
    69         16MB
       
    70     
       
    71     LIBS += \
       
    72         -lcautils \
       
    73         -lcasathandler \
       
    74         -lefsrv \
       
    75         -lestor \
       
    76         -lapparc \
       
    77         -lCenRepNotifHandler \
       
    78         -lcentralrepository \
       
    79         -lplatformenv \
       
    80         -lsysutil \
       
    81         -leuser \
       
    82         -lapgrfx \
       
    83         -lws32 \
       
    84         -lbafl \
       
    85         -lavkon \
       
    86         -lcone \
       
    87         -lcasrvmanager \
       
    88         -lsisregistryclient \
       
    89         -lecom \
       
    90         -lsqldb \
       
    91         -lflogger \
       
    92         -lscrclient \
       
    93         -lsifnotification
       
    94 
       
    95         exportDB.sources = ./data/castorage.db
       
    96         exportDB.path = c:/testing/data/t_casrv/
       
    97 
       
    98         BLD_INF_RULES.prj_testexports += "$${exportDB.sources} $${exportDB.path}"
       
    99 
       
   100         DEPLOYMENT += exportDB
       
   101 }
       
   102 
       
   103 
       
   104         
       
   105