equal
deleted
inserted
replaced
|
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 project. |
|
16 # |
|
17 |
|
18 TEMPLATE = lib |
|
19 CONFIG += hb |
|
20 TARGET = noteseditor |
|
21 DEFINES += NOTESEDITOR_LIB |
|
22 |
|
23 INCLUDEPATH += \ |
|
24 . \ |
|
25 ./src \ |
|
26 ./inc \ |
|
27 ../../../inc \ |
|
28 ./traces |
|
29 |
|
30 DEPENDPATH += \ |
|
31 . \ |
|
32 ./src \ |
|
33 ./inc \ |
|
34 ./data |
|
35 |
|
36 symbian: { |
|
37 TARGET.CAPABILITY = ALL -TCB |
|
38 TARGET.EPOCALLOWDLLDATA = 1 |
|
39 TARGET.UID3 = 0x20029F82 |
|
40 |
|
41 INCLUDEPATH += $$APP_LAYER_SYSTEMINCLUDE |
|
42 |
|
43 LIBS += -lagendainterface \ |
|
44 -lcaleneditor |
|
45 |
|
46 BLD_INF_RULES.prj_exports += \ |
|
47 "./inc/noteseditor.h |../../inc/noteseditor.h" \ |
|
48 "./inc/noteseditordefines.h |../../inc/noteseditordefines.h |
|
49 } |
|
50 |
|
51 SOURCES += \ |
|
52 noteseditor.cpp \ |
|
53 noteseditor_p.cpp \ |
|
54 noteseditordocloader.cpp \ |
|
55 notesnoteeditor.cpp \ |
|
56 notestodoeditor.cpp \ |
|
57 notestodoeditorcustomitem.cpp |
|
58 |
|
59 HEADERS += \ |
|
60 noteseditor.h \ |
|
61 noteseditordefines.h \ |
|
62 noteseditor_p.h \ |
|
63 noteseditordocloader.h \ |
|
64 noteseditorcommon.h \ |
|
65 notesnoteeditor.h \ |
|
66 notestodoeditor.h \ |
|
67 notestodoeditorcustomitem.h |
|
68 |
|
69 RESOURCES += \ |
|
70 noteseditor.qrc |
|
71 |
|
72 TRANSLATIONS += noteseditor.ts |
|
73 |
|
74 # End of file --Don't remove this. |