locationdataharvester/mylocationsengine/mylocationsengine.pro
changeset 26 f3533f6eae3f
parent 20 cd10d5b85554
child 30 96df3ab41000
equal deleted inserted replaced
24:ccec19943943 26:f3533f6eae3f
     1 #
       
     2 # Copyright (c) 2009 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 
     1 
    17 TEMPLATE=app
     2 TEMPLATE=app
    18 TARGET=mylocationsengine
     3 TARGET=mylocationsengine
    19 CONFIG += Qt
     4 CONFIG += Qt
    20 DEPENDPATH += .
     5 DEPENDPATH += .
    21 INCLUDEPATH += .
     6 INCLUDEPATH += .
    22 INCLUDEPATH += ../inc
     7 INCLUDEPATH += ../inc
    23 INCLUDEPATH += ../../inc
     8 INCLUDEPATH += ../../inc
    24 INCLUDEPATH += ../geocodeupdate/inc
     9 INCLUDEPATH += ../geocodeupdate/inc
    25 INCLUDEPATH += ../mylocationlogger/inc
    10 INCLUDEPATH += ../mylocationlogger/inc
       
    11 INCLUDEPATH += ../mylocationsdatabasemanager/inc
       
    12 INCLUDEPATH += /epoc32/include/app
    26 
    13 
    27 symbian: { 
    14 symbian: { 
    28 
    15 
    29     TARGET.UID3 = 0x2002680A 
    16     TARGET.UID3 = 0x2002680A 
    30     isEmpty(TARGET.EPOCSTACKSIZE):TARGET.EPOCSTACKSIZE = 0x6000
    17     isEmpty(TARGET.EPOCSTACKSIZE):TARGET.EPOCSTACKSIZE = 0x8000
    31     isEmpty(TARGET.EPOCHEAPSIZE):TARGET.EPOCHEAPSIZE = 20480 \
    18     isEmpty(TARGET.EPOCHEAPSIZE):TARGET.EPOCHEAPSIZE = 20480 \
    32         16943040
    19         16943040
    33     TARGET.CAPABILITY = ALL -TCB
    20     TARGET.CAPABILITY = ALL -TCB
    34     
    21     
    35     LIBS += -llbs \
    22     LIBS += -llbs \
    44         -lflogger \
    31         -lflogger \
    45         -lQtContacts \
    32         -lQtContacts \
    46         -lgeocodeupdate \
    33         -lgeocodeupdate \
    47         -lecom \
    34         -lecom \
    48 	-lcalinterimapi \
    35 	-lcalinterimapi \
    49 	-llocationdatalookupdb
    36 	-llocationdatalookupdb \
       
    37 	-lmylocationsdatabasemanager
    50 
    38 
    51 }
    39 }
    52 
    40 
    53 SOURCES += src/appmain.cpp \
    41 SOURCES += src/appmain.cpp \
    54     src/mylocationsengine.cpp \
    42     src/mylocationsengine.cpp \
    55     src/mylocationsdatabasemanager.cpp \
       
    56     src/mylocationslookupdb.cpp \
       
    57     src/maptileinterface.cpp \
    43     src/maptileinterface.cpp \
    58     src/addresscomparision.cpp \   
    44     src/addresscomparision.cpp \   
    59     src/lookupmaptiledb.cpp    \
    45     src/lookupmaptiledb.cpp    \
    60     src/calendernotification.cpp 
    46     src/calendernotification.cpp \
       
    47     src/mylocationgeotagtimerao.cpp 
    61 
    48 
    62 HEADERS += inc/appmain.h \
    49 HEADERS += inc/appmain.h \
    63     inc/mylocationsengine.h \
    50     inc/mylocationsengine.h \
    64     inc/mylocationslookupdb.h \
       
    65     inc/mylocationsdatabasemanager.h \
       
    66     inc/maptileinterface.h \
    51     inc/maptileinterface.h \
    67     inc/addresscomparision.h \
    52     inc/addresscomparision.h \
    68     inc/lookupmaptiledb.h \
    53     inc/lookupmaptiledb.h \
    69     inc/calendernotification.h
    54     inc/calendernotification.h \
       
    55     inc/mylocationgeotagtimerao.h
    70 
    56 
    71 
    57 
    72 
    58 
    73 
    59