satui/satapp/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:
       
    15 #
       
    16 #
       
    17 #
       
    18 
       
    19 TEMPLATE = app
       
    20 TARGET = satapp
       
    21 DEPENDPATH += .
       
    22 HEADERS += $$PUBLIC_HEADERS
       
    23 MOC_DIR = moc
       
    24 
       
    25 CONFIG += hb
       
    26 
       
    27 ICON = resource/qtg_large_sat.svg
       
    28 symbian: {
       
    29     TARGET.CAPABILITY = CAP_APPLICATION NetworkControl
       
    30     TARGET.UID3=0x101f4ce0
       
    31 }
       
    32 
       
    33 # enable this for tracing into a file (log/sat/satui.txt)
       
    34 # DEFINES += SAT_DEBUG_TO_FILE
       
    35 # LIBS += -lflogger
       
    36 
       
    37 INCLUDEPATH += $$MW_LAYER_SYSTEMINCLUDE \
       
    38     $$MOC_DIR \
       
    39     ../../inc 
       
    40 
       
    41 LIBS += -lSatClient \
       
    42         -lSatInternalClient \
       
    43         -legul \
       
    44         -lfbscli \
       
    45         -lcentralrepository \
       
    46         -lCenRepNotifHandler \
       
    47         -lCdlEngine \
       
    48         -lmediaclientaudio \
       
    49         -lprofileeng \
       
    50         -lbafl 
       
    51 
       
    52 HEADERS += inc/satappmainhandler.h \
       
    53            inc/satappserverdispatcher.h \
       
    54            inc/satappmenuprovider.h \
       
    55            inc/satappinputprovider.h \
       
    56            inc/satapptoneprovider.h \
       
    57            inc/satapppopupprovider.h\
       
    58            inc/satappconfirmprovider.h \
       
    59            inc/satappaction.h \
       
    60            inc/satappconstant.h
       
    61 
       
    62 SOURCES += src/main.cpp \
       
    63            src/satappmainhandler.cpp \
       
    64            src/satappserverdispatcher.cpp \
       
    65            src/satappmenuprovider.cpp \
       
    66            src/satappinputprovider.cpp \
       
    67            src/satapptoneprovider.cpp \
       
    68            src/satapppopupprovider.cpp \
       
    69            src/satappconfirmprovider.cpp \
       
    70            src/satappaction.cpp
       
    71 
       
    72 BLD_INF_RULES.prj_exports += "rom/satapp.iby CORE_MW_LAYER_IBY_EXPORT_PATH(satapp.iby)" \
       
    73                              "rom/satapp_stub.sis /epoc32/data/z/system/install/satapp_stub.sis" \
       
    74                              "resource/satapp.ts /epoc32/include/platform/qt/translations/satapp.ts"
       
    75                              
       
    76 
       
    77 RESOURCES += resource/satapp.qrc
       
    78