locationdataharvester/mylocationsdatabasemanager/mylocationsdatabasemanager.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 = mylocationsdatabasemanager   
       
    23 
       
    24 CONFIG += dll
       
    25 CONFIG += Qt
       
    26 
       
    27 DEPENDPATH += .
       
    28 INCLUDEPATH += .
       
    29 INCLUDEPATH += ../inc
       
    30 INCLUDEPATH += ../mylocationlogger/inc
       
    31 
       
    32 
       
    33 defines += EPOCALLOWDLLDATA
       
    34 
       
    35 symbian: { 
       
    36 
       
    37     TARGET.EPOCALLOWDLLDATA = 1
       
    38     TARGET.CAPABILITY = All -Tcb
       
    39     TARGET.UID3 = 0x2002FF5C
       
    40     INCLUDEPATH += $$APP_LAYER_SYSTEMINCLUDE
       
    41 
       
    42     LIBS += -llbs \
       
    43         -leposlandmarks \
       
    44         -leposlmsearchlib \
       
    45         -leuser \
       
    46         -leposlmdbmanlib \
       
    47         -lcntmodel \
       
    48         -lefsrv \
       
    49         -lflogger \
       
    50         -ledbms \
       
    51         -lbafl \
       
    52         -lcalinterimapi \
       
    53         -llocationdatalookupdb
       
    54 
       
    55 }
       
    56 
       
    57 SOURCES += src/mylocationsdatabasemanager.cpp 
       
    58 
       
    59 HEADERS += inc/mylocationsdatabasemanager.h 
       
    60 
       
    61 defBlock = \      
       
    62 	"$${LITERAL_HASH}if defined(EABI)" \
       
    63 		"DEFFILE  ../eabi/mylocationsdatabasemanager.def" \
       
    64     "$${LITERAL_HASH}else" \
       
    65         "DEFFILE  ../bwins/mylocationsdatabasemanager.def" \
       
    66 	"$${LITERAL_HASH}endif"
       
    67 MMP_RULES += defBlock
       
    68 
       
    69 
       
    70