locationdataharvester/geocodeupdate/geocodeupdate.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 
       
     4 
       
     5 #
       
     6 # All rights reserved.
       
     7 # This component and the accompanying materials are made available
       
     8 # under the terms of "Eclipse Public License v1.0"
       
     9 # which accompanies this distribution, and is available
       
    10 # at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
    11 #
       
    12 # Initial Contributors:
       
    13 # Nokia Corporation - initial contribution.
       
    14 #
       
    15 # Contributors:
       
    16 # 
       
    17 # Description:
       
    18 #
       
    19 #
       
    20 
       
    21 TEMPLATE = lib
       
    22 TARGET = geocodeupdate   
       
    23 
       
    24 CONFIG += dll
       
    25 CONFIG += Qt
       
    26 
       
    27 DEPENDPATH += .
       
    28 
       
    29 
       
    30 # Input
       
    31 # Input
       
    32 HEADERS += ./inc/geocodeupdate.h \
       
    33            ../mylocationlogger/inc \
       
    34            ../inc   
       
    35 SOURCES +=./src/geocodeupdate.cpp 
       
    36 
       
    37 MOC_DIR = moc
       
    38 
       
    39 DEFINES += GEOCODEUPDATEDLL
       
    40 
       
    41 symbian: 
       
    42 { 
       
    43     TARGET.EPOCALLOWDLLDATA = 1
       
    44     TARGET.CAPABILITY = All -Tcb
       
    45     TARGET.UID3 = 0x2002C3A9
       
    46     INCLUDEPATH += $$APP_LAYER_SYSTEMINCLUDE
       
    47     deploy.path = $$EPOCROOT
       
    48     exportheaders.sources = $$PUBLIC_HEADERS
       
    49     exportheaders.path = epoc32/include
       
    50     DEPLOYMENT += exportheaders
       
    51     
       
    52     qtAddLibrary(QtContacts)
       
    53 	LIBS += -lcntmodel \
       
    54 	        -lagendainterface \
       
    55 		    -leuser  \
       
    56 		    -lestor \
       
    57 		    -lflogger
       
    58    
       
    59 
       
    60 }  
       
    61 
       
    62 defBlock = \      
       
    63 	"$${LITERAL_HASH}if defined(EABI)" \
       
    64 		"DEFFILE  ../eabi/geocodeupdate.def" \
       
    65     "$${LITERAL_HASH}else" \
       
    66         "DEFFILE  ../bwins/geocodeupdate.def" \
       
    67 	"$${LITERAL_HASH}endif"
       
    68 MMP_RULES += defBlock
       
    69 
       
    70 # End of file	--Don't remove this.