notes/notesui/notesapplication/notesapplication.pro
branchRCL_3
changeset 65 12af337248b1
equal deleted inserted replaced
60:96907930389d 65:12af337248b1
       
     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 application.
       
    15 #
       
    16 
       
    17 TEMPLATE = app
       
    18 CONFIG += hb
       
    19 TARGET = notes
       
    20 INCLUDEPATH += \
       
    21 		. \
       
    22 		../notesappcontroller/inc \
       
    23 		../../inc \
       
    24 		./traces
       
    25 
       
    26 DEPENDPATH += \
       
    27 		. \
       
    28 		./src \
       
    29 		./inc \
       
    30 		../../data
       
    31 
       
    32 symbian: {
       
    33 	TARGET.CAPABILITY = ALL -TCB
       
    34 	TARGET.EPOCALLOWDLLDATA = 1
       
    35 	TARGET.UID3 = 0x20029F80
       
    36 	TARGET.EPOCHEAPSIZE = 0x200000 0x4000000
       
    37 	
       
    38 	LIBS += \
       
    39 		-lnotesappcontroller
       
    40 
       
    41 	notes.sources += \
       
    42 		agendainterface.dll \
       
    43 		notesviews.dll \
       
    44 		notesmodel.dll \
       
    45 		noteseditor.dll \
       
    46 		notesviewmanager.dll \
       
    47 		notesmodelhandler.dll \
       
    48 		notesappcontroller.dll
       
    49 
       
    50 	notes.path = /sys/bin
       
    51 	DEPLOYMENT += notes
       
    52 	
       
    53 	SKINICON = qtg_large_notes
       
    54 }
       
    55 
       
    56 SOURCES += \
       
    57 		main.cpp \
       
    58 		notesapplication.cpp
       
    59 
       
    60 HEADERS += \
       
    61 		notesapplication.h
       
    62 
       
    63 RESOURCES += notes.qrc
       
    64 
       
    65 TRANSLATIONS += notes.ts
       
    66 
       
    67 # End of file	--Don't remove this.