locationpickerservice/locationpickerservice.pro
branchRCL_3
changeset 17 1fc85118c3ae
equal deleted inserted replaced
16:8173571d354e 17:1fc85118c3ae
       
     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     INCLUDEPATH += $$APP_LAYER_SYSTEMINCLUDE
       
    39     
       
    40 }
       
    41 
       
    42 # ##### qthighway
       
    43 CONFIG += service
       
    44 LIBS += -lxqservice \
       
    45     -lxqserviceutil \
       
    46     -lganeswidgets.dll \
       
    47     -lthumbnailmanagerqt.dll \
       
    48     -llocationdatalookupdb
       
    49 SERVICE.FILE = service_conf.xml
       
    50 SERVICE.OPTIONS = embeddable
       
    51 SERVICE.OPTIONS += hidden
       
    52 
       
    53 # #### /qthighway
       
    54 
       
    55 RESOURCES += ./resources/locationpicker.qrc 
       
    56 
       
    57 TRANSLATIONS += lilpicker.ts
       
    58 
       
    59 SOURCES += src/main.cpp \
       
    60     src/locationpickercontent.cpp \
       
    61     src/locationpickerappwindow.cpp \
       
    62     src/locationpickersearchview.cpp \
       
    63     src/locationpickerproxymodel.cpp \
       
    64     src/locationpickercollectionlistcontent.cpp \
       
    65     src/locationpickercollectioncontent.cpp \
       
    66     src/locationpickerservice.cpp \
       
    67     src/locationpickerdatamanager.cpp \
       
    68     src/locationpickerdatamanager_p.cpp \
       
    69     src/locationpickerview.cpp \
       
    70     src/locationpickerdocumentloader.cpp \
       
    71     src/hgwidgetdatamodel.cpp
       
    72     
       
    73     
       
    74     
       
    75 
       
    76 HEADERS += inc/locationpickercontent.h \
       
    77     inc/locationpickerappwindow.h \
       
    78     inc/locationpickersearchview.h \
       
    79     inc/locationpickerproxymodel.h \
       
    80     inc/locationpickercollectionlistcontent.h \
       
    81     inc/locationpickercollectioncontent.h \
       
    82     inc/locationpickertypes.h \
       
    83     inc/locationpickerservice.h \
       
    84     inc/locationpickerdatamanager.h \
       
    85     inc/locationpickerdatamanager_p.h \
       
    86     inc/locationpickerview.h \
       
    87     inc/locationpickerdocumentloader.h \
       
    88     inc/hgwidgetdatamodel.h
       
    89