-rw-r--r-- | korganizer/korganizer.pro | 172 |
1 files changed, 172 insertions, 0 deletions
diff --git a/korganizer/korganizer.pro b/korganizer/korganizer.pro new file mode 100644 index 0000000..fe2250e --- a/dev/null +++ b/korganizer/korganizer.pro | |||
@@ -0,0 +1,172 @@ | |||
1 | TEMPLATE= app | ||
2 | CONFIG = qt warn_on | ||
3 | TARGET = kopi | ||
4 | OBJECTS_DIR = _obj/ | ||
5 | MOC_DIR = _moc | ||
6 | DESTDIR= ../bin | ||
7 | |||
8 | include( ../variables.pri ) | ||
9 | |||
10 | INCLUDEPATH += ../microkde ../ interfaces ../microkde/kdecore ../microkde/kdeui ../microkde/kio/kfile | ||
11 | #../qtcompat | ||
12 | DEFINES += KORG_NODND KORG_NOPLUGINS KORG_NOARCHIVE KORG_NOMAIL | ||
13 | DEFINES += KORG_NODCOP KORG_NOKALARMD KORG_NORESOURCEVIEW KORG_NOSPLITTER | ||
14 | #KORG_NOPRINTER KORG_NOKABC | ||
15 | DEFINES += KORG_NOLVALTERNATION | ||
16 | DEFINES += DESKTOP_VERSION | ||
17 | unix : { | ||
18 | LIBS += ../bin/libmicrokdepim.so | ||
19 | LIBS += ../bin/libmicrokcal.so | ||
20 | LIBS += ../bin/libmicrokde.so | ||
21 | LIBS += ../bin/libmicrokabc.so | ||
22 | LIBS += -lldap | ||
23 | OBJECTS_DIR = obj/unix | ||
24 | MOC_DIR = moc/unix | ||
25 | } | ||
26 | win32: { | ||
27 | DEFINES += _WIN32_ | ||
28 | LIBS += ../bin/microkdepim.lib | ||
29 | LIBS += ../bin/microkcal.lib | ||
30 | LIBS += ../bin/microkde.lib | ||
31 | LIBS += ../bin/microkabc.lib | ||
32 | LIBS += ../libical/lib/ical.lib | ||
33 | LIBS += ../libical/lib/icalss.lib | ||
34 | QMAKE_LINK += /NODEFAULTLIB:LIBC | ||
35 | OBJECTS_DIR = obj/win | ||
36 | MOC_DIR = moc/win | ||
37 | } | ||
38 | |||
39 | |||
40 | INTERFACES = kofilterview_base.ui | ||
41 | # filteredit_base.ui | ||
42 | |||
43 | # kdateedit.h \ | ||
44 | |||
45 | HEADERS = \ | ||
46 | filteredit_base.h \ | ||
47 | alarmclient.h \ | ||
48 | calendarview.h \ | ||
49 | customlistviewitem.h \ | ||
50 | datenavigator.h \ | ||
51 | docprefs.h \ | ||
52 | filtereditdialog.h \ | ||
53 | incomingdialog.h \ | ||
54 | incomingdialog_base.h \ | ||
55 | interfaces/korganizer/baseview.h \ | ||
56 | interfaces/korganizer/calendarviewbase.h \ | ||
57 | journalentry.h \ | ||
58 | kdatenavigator.h \ | ||
59 | koagenda.h \ | ||
60 | koagendaitem.h \ | ||
61 | koagendaview.h \ | ||
62 | kocounterdialog.h \ | ||
63 | kodaymatrix.h \ | ||
64 | kodialogmanager.h \ | ||
65 | koeditordetails.h \ | ||
66 | koeditorgeneral.h \ | ||
67 | koeditorgeneralevent.h \ | ||
68 | koeditorgeneraltodo.h \ | ||
69 | koeditorrecurrence.h \ | ||
70 | koeventeditor.h \ | ||
71 | koeventpopupmenu.h \ | ||
72 | koeventview.h \ | ||
73 | koeventviewer.h \ | ||
74 | koeventviewerdialog.h \ | ||
75 | kofilterview.h \ | ||
76 | koglobals.h \ | ||
77 | koincidenceeditor.h \ | ||
78 | kojournalview.h \ | ||
79 | kolistview.h \ | ||
80 | kolocationbox.h \ | ||
81 | komonthview.h \ | ||
82 | koprefs.h \ | ||
83 | koprefsdialog.h \ | ||
84 | kosyncprefsdialog.h \ | ||
85 | kotimespanview.h \ | ||
86 | kotodoeditor.h \ | ||
87 | kotodoview.h \ | ||
88 | kotodoviewitem.h \ | ||
89 | koviewmanager.h \ | ||
90 | kowhatsnextview.h \ | ||
91 | ktimeedit.h \ | ||
92 | lineview.h \ | ||
93 | mainwindow.h \ | ||
94 | navigatorbar.h \ | ||
95 | outgoingdialog.h \ | ||
96 | outgoingdialog_base.h \ | ||
97 | publishdialog.h \ | ||
98 | publishdialog_base.h \ | ||
99 | savetemplatedialog.h \ | ||
100 | searchdialog.h \ | ||
101 | simplealarmclient.h \ | ||
102 | statusdialog.h \ | ||
103 | timeline.h \ | ||
104 | timespanview.h \ | ||
105 | version.h \ | ||
106 | ../kalarmd/alarmdialog.h | ||
107 | |||
108 | SOURCES = \ | ||
109 | filteredit_base.cpp \ | ||
110 | calendarview.cpp \ | ||
111 | datenavigator.cpp \ | ||
112 | docprefs.cpp \ | ||
113 | filtereditdialog.cpp \ | ||
114 | incomingdialog.cpp \ | ||
115 | incomingdialog_base.cpp \ | ||
116 | journalentry.cpp \ | ||
117 | kdatenavigator.cpp \ | ||
118 | koagenda.cpp \ | ||
119 | koagendaitem.cpp \ | ||
120 | koagendaview.cpp \ | ||
121 | kocounterdialog.cpp \ | ||
122 | kodaymatrix.cpp \ | ||
123 | kodialogmanager.cpp \ | ||
124 | koeditordetails.cpp \ | ||
125 | koeditorgeneral.cpp \ | ||
126 | koeditorgeneralevent.cpp \ | ||
127 | koeditorgeneraltodo.cpp \ | ||
128 | koeditorrecurrence.cpp \ | ||
129 | koeventeditor.cpp \ | ||
130 | koeventpopupmenu.cpp \ | ||
131 | koeventview.cpp \ | ||
132 | koeventviewer.cpp \ | ||
133 | koeventviewerdialog.cpp \ | ||
134 | kofilterview.cpp \ | ||
135 | koglobals.cpp \ | ||
136 | koincidenceeditor.cpp \ | ||
137 | kojournalview.cpp \ | ||
138 | kolistview.cpp \ | ||
139 | kolocationbox.cpp \ | ||
140 | komonthview.cpp \ | ||
141 | koprefs.cpp \ | ||
142 | koprefsdialog.cpp \ | ||
143 | kosyncprefsdialog.cpp \ | ||
144 | kotimespanview.cpp \ | ||
145 | kotodoeditor.cpp \ | ||
146 | kotodoview.cpp \ | ||
147 | kotodoviewitem.cpp \ | ||
148 | koviewmanager.cpp \ | ||
149 | kowhatsnextview.cpp \ | ||
150 | ktimeedit.cpp \ | ||
151 | lineview.cpp \ | ||
152 | main.cpp \ | ||
153 | mainwindow.cpp \ | ||
154 | navigatorbar.cpp \ | ||
155 | outgoingdialog.cpp \ | ||
156 | outgoingdialog_base.cpp \ | ||
157 | publishdialog.cpp \ | ||
158 | publishdialog_base.cpp \ | ||
159 | savetemplatedialog.cpp \ | ||
160 | searchdialog.cpp \ | ||
161 | simplealarmclient.cpp \ | ||
162 | statusdialog.cpp \ | ||
163 | timeline.cpp \ | ||
164 | timespanview.cpp \ | ||
165 | ../kalarmd/alarmdialog.cpp | ||
166 | |||
167 | HEADERS += calprintbase.h calprinter.h calprintplugins.h cellitem.h | ||
168 | INTERFACES += calprintdayconfig_base.ui \ | ||
169 | calprintmonthconfig_base.ui \ | ||
170 | calprinttodoconfig_base.ui \ | ||
171 | calprintweekconfig_base.ui | ||
172 | SOURCES += calprintbase.cpp calprinter.cpp calprintplugins.cpp cellitem.cpp | ||