notes/notesui/notesviews/notesviews.pro
changeset 18 c198609911f9
child 55 2c54b51f39c4
equal deleted inserted replaced
0:f979ecb2b13e 18:c198609911f9
       
     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: Project definition file for notes views.
       
    15 #
       
    16 
       
    17 TEMPLATE = lib
       
    18 TARGET = notesviews
       
    19 CONFIG += hb
       
    20 DEFINES += NOTESVIEWS_LIB
       
    21 
       
    22 INCLUDEPATH += \
       
    23 		. \
       
    24 		../inc \
       
    25 		../notesviewmanager/inc \
       
    26 		../notesmodel/inc \
       
    27 		../noteseditor/inc \
       
    28 		../notesappcontroller/inc \
       
    29 		../../inc \
       
    30 		../../../inc
       
    31 		
       
    32 DEPENDPATH += \
       
    33 		. \
       
    34 		./inc \
       
    35 		./src
       
    36 
       
    37 symbian: {
       
    38 	TARGET.CAPABILITY += ALL -TCB
       
    39 	TARGET.EPOCALLOWDLLDATA = 1
       
    40 	TARGET.UID3 = 0x20029F83
       
    41 	
       
    42 	INCLUDEPATH += ../../../agendainterface/inc \
       
    43 	               $$APP_LAYER_SYSTEMINCLUDE
       
    44 
       
    45 	LIBS += \
       
    46 		-lagendainterface \
       
    47 		-lnotesmodel \
       
    48 		-lnoteseditor \
       
    49 		-lagendaeventviewer
       
    50 }
       
    51 
       
    52 SOURCES += \
       
    53 		notesmainview.cpp \
       
    54 		notescollectionview.cpp \
       
    55 		notestodoview.cpp \
       
    56 		notesfavoriteview.cpp \
       
    57 		notesnoteview.cpp
       
    58 
       
    59 HEADERS += \
       
    60 		notesmainview.h \
       
    61 		notescollectionview.h \
       
    62 		notestodoview.h \
       
    63 		notesfavoriteview.h \
       
    64 		notesnoteview.h
       
    65 
       
    66 # End of file	--Don't remove this.