phonebookui/phonebookservices/phonebookservices.pro
changeset 24 0ba2181d7c28
child 27 de1630741fbe
equal deleted inserted replaced
0:e686773b3f54 24:0ba2181d7c28
       
     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 TEMPLATE = app
       
    13 TARGET = phonebookservices
       
    14 CONFIG += hb
       
    15 CONFIG += service
       
    16 
       
    17 DEPENDPATH += . \
       
    18     src
       
    19 
       
    20 INCLUDEPATH +=  ../pbkcommonui/inc \
       
    21                 ../inc
       
    22 
       
    23 INCLUDEPATH += . \
       
    24     inc
       
    25 
       
    26 INCLUDEPATH += $$APP_LAYER_SYSTEMINCLUDE
       
    27 
       
    28 MOC_DIR = moc
       
    29 
       
    30 # Input
       
    31 HEADERS += inc/cntservicemainwindow.h \
       
    32            inc/cntserviceviewmanager.h \
       
    33            inc/cntservicehandler.h \
       
    34            inc/cntservicescontact.h \
       
    35            inc/cntservicecontactfetchview.h \
       
    36            inc/cntservicecontactselectionview.h \
       
    37            inc/cntserviceeditview.h \
       
    38            inc/cntservicecontactcardview.h \
       
    39            inc/cntservicesubeditview.h \
       
    40            inc/cntserviceassigncontactcardview.h
       
    41 
       
    42 SOURCES += src/main.cpp \
       
    43            src/cntservicemainwindow.cpp \
       
    44            src/cntserviceviewmanager.cpp \
       
    45            src/cntservicehandler.cpp \
       
    46            src/cntservicecontactfetchview.cpp \
       
    47            src/cntservicecontactselectionview.cpp \
       
    48            src/cntserviceeditview.cpp \
       
    49            src/cntservicecontactcardview.cpp \
       
    50            src/cntservicesubeditview.cpp \
       
    51            src/cntserviceassigncontactcardview.cpp
       
    52 
       
    53 # capability
       
    54 TARGET.CAPABILITY = ALL \
       
    55     -TCB
       
    56 
       
    57 TRANSLATIONS = contacts.ts
       
    58 
       
    59 TARGET.UID3 = 0x2002429B
       
    60 
       
    61 LIBS += -lxqservice \
       
    62         -lxqserviceutil \
       
    63         -lhbcore \
       
    64         -lqtcontacts \
       
    65         -lmobcntmodel \
       
    66         -lpbkcommonui
       
    67 
       
    68 SERVICE.FILE = service_conf.xml
       
    69 SERVICE.OPTIONS = embeddable
       
    70 SERVICE.OPTIONS += hidden
       
    71 
       
    72 # export the header file
       
    73 CNT_SERVICES_PUBLIC_HEADERS += cntservicescontact.h
       
    74 
       
    75 symbian {
       
    76     deploy.path = /
       
    77     headers.sources = $$CNT_SERVICES_PUBLIC_HEADERS
       
    78     headers.path = epoc32/include
       
    79     DEPLOYMENT += exportheaders
       
    80 
       
    81     for(header, headers.sources):BLD_INF_RULES.prj_exports += "./inc/$$header $$deploy.path$$headers.path/$$basename(header)"
       
    82 }