satui/satapp/tsrc/ut_satapp/ut_satapp.pro
branchRCL_3
changeset 20 987c9837762f
parent 19 7d48bed6ce0c
child 21 0a6dd2dc9970
equal deleted inserted replaced
19:7d48bed6ce0c 20:987c9837762f
     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: unit test pro file for satapp.
       
    15 #
       
    16 
       
    17 TEMPLATE = app
       
    18 TARGET = ut_satapp
       
    19 DEPENDPATH += .
       
    20 INCLUDEPATH += .
       
    21 CONFIG += hb
       
    22 CONFIG += qtestlib
       
    23 HEADERS += $$PUBLIC_HEADERS
       
    24 MOC_DIR = moc
       
    25 
       
    26 symbian {
       
    27     TARGET.CAPABILITY = CAP_APPLICATION
       
    28 }
       
    29 
       
    30 INCLUDEPATH += $$MW_LAYER_SYSTEMINCLUDE \
       
    31                $$MOC_DIR \
       
    32                ../../../../inc \
       
    33                ../../inc
       
    34 
       
    35 LIBS += -legul \
       
    36         -lfbscli \
       
    37         -lcentralrepository \
       
    38         -lCenRepNotifHandler \
       
    39         -lCdlEngine \
       
    40         -lbafl \
       
    41         -lmediaclientaudio \
       
    42         -lprofileeng \
       
    43         -lFlogger
       
    44 
       
    45 HEADERS += ../../inc \
       
    46            ../../inc/satappmainhandler.h \
       
    47            ../../inc/satappserverdispatcher.h \
       
    48            ../../inc/satappmenuprovider.h \
       
    49            ../../inc/satappinputprovider.h \
       
    50            ../../inc/satapptoneprovider.h \
       
    51            ../../inc/satapppopupprovider.h \
       
    52            ../../inc/satappconfirmprovider.h \
       
    53            ../../inc/satappaction.h \
       
    54            ../../inc/satappconstant.h \
       
    55            inc/ut_satappmainhandler.h \
       
    56            inc/ut_satappserverdispatcher.h \
       
    57            inc/ut_satappmenuprovider.h \
       
    58            inc/ut_satappinputprovider.h \
       
    59            inc/ut_satapptoneprovider.h \
       
    60            inc/ut_satapppopupprovider.h \
       
    61            inc/ut_satappconfirmprovider.h \
       
    62            inc/ut_satappaction.h
       
    63 
       
    64 
       
    65 SOURCES += ../../src/satappmainhandler.cpp \
       
    66            ../../src/satappserverdispatcher.cpp \
       
    67            ../../src/satappmenuprovider.cpp \
       
    68            ../../src/satappinputprovider.cpp \
       
    69            ../../src/satapptoneprovider.cpp \
       
    70            ../../src/satapppopupprovider.cpp \
       
    71            ../../src/satappconfirmprovider.cpp \
       
    72            ../../src/satappaction.cpp \
       
    73            src/main.cpp \
       
    74            src/ut_satappmainhandler.cpp \
       
    75            src/ut_satappserverdispatcher.cpp \
       
    76            src/ut_satappmenuprovider.cpp \
       
    77            src/ut_satappinputprovider.cpp \
       
    78            src/ut_satapptoneprovider.cpp \
       
    79            src/ut_satapppopupprovider.cpp \
       
    80            src/ut_satappconfirmprovider.cpp \
       
    81            src/ut_satappaction.cpp \
       
    82            src/rsat_stub.cpp
       
    83 
       
    84 RESOURCES += ../../resource/satapp.qrc
       
    85