bluetoothengine/btindicator/btindicator.pro
branchRCL_3
changeset 23 9386f31cc85b
parent 22 613943a21004
child 24 269724087bed
equal deleted inserted replaced
22:613943a21004 23:9386f31cc85b
     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: 
       
    15 #
       
    16 
       
    17 TEMPLATE = lib
       
    18 TARGET = btindicator
       
    19 CONFIG += hb plugin
       
    20 
       
    21 HEADERS += inc/btindicatorplugin.h \
       
    22     inc/btindicator.h \
       
    23     inc/btindicatorconstants.h
       
    24 	
       
    25 SOURCES += src/btindicatorplugin.cpp \
       
    26     src/btindicator.cpp
       
    27     
       
    28 MOC_DIR = moc
       
    29 OBJECTS_DIR = obj    
       
    30 
       
    31 LIBS += -lxqservice -lcpframework
       
    32 symbian { 
       
    33     TARGET.EPOCALLOWDLLDATA = 1
       
    34     TARGET.CAPABILITY = CAP_GENERAL_DLL
       
    35     TARGET.UID3 = 0x200315E9
       
    36     pluginstub.sources = $${TARGET}.dll
       
    37     pluginstub.path = /resource/plugins/indicators
       
    38     DEPLOYMENT += pluginstub
       
    39 	
       
    40 BLD_INF_RULES.prj_exports += "$${LITERAL_HASH}include <platform_paths.hrh>" \
       
    41     "qmakepluginstubs/$${TARGET}.qtplugin /epoc32/data/z/pluginstub/$${TARGET}.qtplugin" \
       
    42     "rom/btindicator.iby CORE_MW_LAYER_IBY_EXPORT_PATH(btindicator.iby)" \
       
    43 	"inc/btindicatorconstants.h |../inc/btindicatorconstants.h"
       
    44 }
       
    45