locationdataharvester/locationdatalookupdb/locationdatalookupdb.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 data lookup db project file
       
    15 
       
    16 TEMPLATE = lib
       
    17 DEPENDPATH += .
       
    18 INCLUDEPATH += .
       
    19 
       
    20 
       
    21 # By default Qt adds dependencies to QtCore and QtGui, 
       
    22 # QtCore is enough for this example 
       
    23 #QT = core
       
    24 QT           += sql
       
    25 
       
    26 #BUILD_DLL macro is used to define export macro
       
    27 DEFINES += BUILD_DLL           
       
    28 
       
    29            
       
    30 SOURCES += locationdatalookupdb.cpp
       
    31 
       
    32 symbian: {
       
    33     TARGET.UID3 = 0x2002E714
       
    34     TARGET.EPOCALLOWDLLDATA = 1
       
    35 TARGET.CAPABILITY = ALL \
       
    36         -TCB
       
    37     INCLUDEPATH += $$APP_LAYER_SYSTEMINCLUDE
       
    38 }    
       
    39 
       
    40 defBlock = \      
       
    41 	"$${LITERAL_HASH}if defined(EABI)" \
       
    42 		"DEFFILE  ../eabi/locationdatalookupdb.def" \
       
    43     "$${LITERAL_HASH}else" \
       
    44         "DEFFILE  ../bwins/locationdatalookupdb.def" \
       
    45 	"$${LITERAL_HASH}endif"
       
    46 MMP_RULES += defBlock
       
    47