locationpickerservice/locationpickerservice.pro
changeset 15 13ae750350c9
child 17 0f22fb80ebba
equal deleted inserted replaced
0:522cd55cc3d7 15:13ae750350c9
       
     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: Location picker service project file
       
    15 
       
    16 SERVICEAPP = app
       
    17 TARGET = locationpickerservice
       
    18 DEPENDPATH += .
       
    19 INCLUDEPATH += .
       
    20 INCLUDEPATH += ../inc
       
    21 MOC_DIR = moc
       
    22 CONFIG += hb
       
    23 
       
    24 
       
    25 symbian: { 
       
    26     # Build.inf rules
       
    27     BLD_INF_RULES.prj_exports += \
       
    28          "$${LITERAL_HASH}include <platform_paths.hrh>" \
       
    29          "rom/locationpickerservice.iby  CORE_APP_LAYER_IBY_EXPORT_PATH(locationpickerservice.iby)"
       
    30 
       
    31     TARGET.UID3 = 0x2002C3AA 
       
    32     isEmpty(TARGET.EPOCSTACKSIZE):TARGET.EPOCSTACKSIZE = 0x14000
       
    33     isEmpty(TARGET.EPOCHEAPSIZE):TARGET.EPOCHEAPSIZE = 20480 \
       
    34         16943040
       
    35     TARGET.CAPABILITY = ALL \
       
    36         -TCB
       
    37     
       
    38     LIBS += -llbs \
       
    39         -leposlandmarks \
       
    40         -leposlmsearchlib
       
    41 }
       
    42 
       
    43 # ##### qthighway
       
    44 CONFIG += service
       
    45 LIBS += -lxqservice \
       
    46     -lxqserviceutil \
       
    47     -lflogger
       
    48 SERVICE.FILE = service_conf.xml
       
    49 SERVICE.OPTIONS = embeddable
       
    50 SERVICE.OPTIONS += hidden
       
    51 
       
    52 # #### /qthighway
       
    53 
       
    54 RESOURCES += .\resources\locationpicker.qrc 
       
    55 
       
    56 
       
    57 SOURCES += src/main.cpp \
       
    58     src/locationpickerallview.cpp \
       
    59     src/locationpickerappwindow.cpp \
       
    60     src/locationpickertoolbar.cpp \
       
    61     src/locationpickersearchview.cpp \
       
    62     src/locationpickerproxymodel.cpp \
       
    63     src/locationpickercollectionlistview.cpp \
       
    64     src/locationpickercollectioncontent.cpp \
       
    65     src/locationpickerservice.cpp \
       
    66     src/locationpickerdatamanager.cpp \
       
    67     src/locationpickerdatamanager_p.cpp 
       
    68     
       
    69     
       
    70 
       
    71 HEADERS += inc/locationpickerallview.h \
       
    72     inc/locationpickerappwindow.h \
       
    73     inc/locationpickertoolbar.h \
       
    74     inc/locationpickersearchview.h \
       
    75     inc/locationpickerproxymodel.h \
       
    76     inc/locationpickercollectionlistview.h \
       
    77     inc/locationpickercollectioncontent.h \
       
    78     inc/locationpickertypes.h \
       
    79     inc/locationpickerservice.h \
       
    80     inc/locationpickerdatamanager.h \
       
    81     inc/locationpickerdatamanager_p.h
       
    82