notes/notesui/notesplugins/noteseditorplugin/noteseditorplugin.pro
changeset 49 5de72ea7a065
child 55 2c54b51f39c4
equal deleted inserted replaced
37:360d55486d7f 49:5de72ea7a065
       
     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 # This is the project specification file for the notes editor plugin.
       
    16 #
       
    17 
       
    18 TEMPLATE = lib
       
    19 CONFIG += hb plugin
       
    20 TARGET = noteseditorplugin
       
    21 
       
    22 INCLUDEPATH += \
       
    23 		. \
       
    24 		./src \
       
    25 		./inc \
       
    26 		../../../inc
       
    27 		
       
    28 DEPENDPATH += \
       
    29 		. \
       
    30 		./src \
       
    31 		./inc
       
    32 
       
    33 symbian: {
       
    34 	TARGET.CAPABILITY = ALL -TCB
       
    35 	TARGET.EPOCALLOWDLLDATA = 1
       
    36 	TARGET.UID3 = 0x2002FF88
       
    37 
       
    38 	INCLUDEPATH += $$APP_LAYER_SYSTEMINCLUDE	
       
    39 
       
    40 	LIBS += \
       
    41 		-lagendainterface \
       
    42 		-lnoteseditor
       
    43 
       
    44 load(data_caging_paths)
       
    45 
       
    46 plugin.sources = $${TARGET}.dll
       
    47 plugin.path = $$QT_PLUGINS_BASE_DIR/notes
       
    48 DEPLOYMENT += plugin
       
    49 
       
    50 BLD_INF_RULES.prj_exports += \
       
    51 "./qmakepluginstubs/noteseditorplugin.qtplugin  /$$HW_ZDIR$$RESOURCE_FILES_DIR/qt/plugins/notes/noteseditorplugin.qtplugin" 
       
    52 }
       
    53 
       
    54 HEADERS += \
       
    55 		../../../../organizer_plat/notes_editor_api/inc/noteseditorinterface.h \
       
    56 		noteseditorplugin.h
       
    57 
       
    58 SOURCES += noteseditorplugin.cpp
       
    59 
       
    60 # End of file	--Don't remove this.