homescreenapp/hsapplication/tsrc/t_hsapplication/t_hsapplicationexe/t_hsapplicationexe.pro
changeset 90 3ac3aaebaee5
equal deleted inserted replaced
86:e4f038c420f7 90:3ac3aaebaee5
       
     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 
       
    19 CONFIG(debug, debug|release) {    
       
    20     LIBS += -L../../../../../../bin/debug -lhsdomainmodel
       
    21     LIBS += -L../../../../../../bin/debug -lhsutils
       
    22     DESTDIR = debug
       
    23     
       
    24 }
       
    25 else {    
       
    26     LIBS += -L../../../../../../bin/release -lhsdomainmodel
       
    27     LIBS += -L../../../../../../bin/release -lhsutils
       
    28     DESTDIR = release
       
    29 }
       
    30 
       
    31 CONFIG += debug_and_release \
       
    32           console \
       
    33           hb \
       
    34           mobility
       
    35 
       
    36 MOBILITY = serviceframework publishsubscribe
       
    37 
       
    38 QT += testlib \
       
    39       xml \
       
    40       sql
       
    41 
       
    42 DEFINES += HOMESCREEN_TEST \
       
    43            HSDOMAINMODEL_TEST \
       
    44            HSUTILS_TEST
       
    45 
       
    46 coverage:DEFINES += COVERAGE_MEASUREMENT
       
    47 
       
    48 DEPENDPATH += .\
       
    49               ./src \
       
    50               ../../../src \
       
    51               ../../../inc
       
    52 
       
    53 INCLUDEPATH += .\
       
    54                 ./inc \
       
    55                 ../../../inc \
       
    56                 ../../../../inc \
       
    57                 ../../../../hsutils/inc \
       
    58                 ../../../../hsdomainmodel/inc
       
    59                 
       
    60 win32: {
       
    61     INCLUDEPATH += ../../../../../../homescreensrv/homescreensrv_plat/homescreen_information_api/inc
       
    62 }                
       
    63 
       
    64 symbian: {
       
    65     CONFIG += symbian_test
       
    66     CONFIG -= hb
       
    67     load(hb.prf)
       
    68     CONFIG -= symbian_i18n
       
    69     SYMBIAN_PLATFORMS = WINSCW ARMV5
       
    70 
       
    71     TARGET.UID3 = 0x20022F5F
       
    72     TARGET.CAPABILITY = CAP_APPLICATION AllFiles
       
    73     TARGET.EPOCHEAPSIZE = 0x20000 0x1000000 // 128kB - 16MB
       
    74     
       
    75     INCLUDEPATH += $${EPOCROOT}sf/mw/homescreensrv/homescreensrv_plat/contentstorage_api \
       
    76                $${EPOCROOT}sf/mw/homescreensrv/contentstorage/caclient/inc \
       
    77                $${EPOCROOT}sf/mw/homescreensrv/contentstorage/caclient/stub/inc
       
    78     LIBS +=  -lxqservice -lxqserviceutil -lXQKeyCapture -labclient -lxqsettingsmanager
       
    79 
       
    80     include(installs_symbian.pri)
       
    81     
       
    82     MMP_RULES += SMPSAFE
       
    83 }
       
    84 
       
    85 include(t_hsapplicationexe.pri)
       
    86 
       
    87 win32:include(installs_win32.pri)
       
    88 symbian:include(installs_symbian.pri)
       
    89