contentstorage/tsrc/t_sathandler/t_sathandler.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 
       
    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 	../../cautils/inc \
       
    38 	../../extinc \
       
    39 	../../castorage/inc \
       
    40     $$MW_LAYER_SYSTEMINCLUDE
       
    41 
       
    42 include(t_sathandler.pri)
       
    43 		
       
    44 symbian: { 
       
    45 
       
    46     CONFIG += symbian_test
       
    47     coverage: CONFIG -= symbian_test
       
    48 
       
    49     TARGET.UID2 = 0x10009D8D
       
    50     TARGET.UID3 = 0x20028712
       
    51     TARGET.CAPABILITY = ALL \
       
    52         -TCB
       
    53     TARGET.EPOCSTACKSIZE = 0x14000 \
       
    54         // \
       
    55         80kB
       
    56     TARGET.EPOCHEAPSIZE = 0x20000 \
       
    57         0x1000000 \
       
    58         // \
       
    59         128kB \
       
    60         - \
       
    61         16MB
       
    62 
       
    63 	LIBS += \
       
    64         -leuser \
       
    65         -lecom \
       
    66         -lcasathandler \
       
    67         -laknicon \
       
    68         -lSatClient \
       
    69         -lfbscli \
       
    70         -lbitgdi
       
    71 }
       
    72 
       
    73 
       
    74 		
       
    75