-rw-r--r-- | libkcal/libkcal.pro | 100 |
1 files changed, 100 insertions, 0 deletions
diff --git a/libkcal/libkcal.pro b/libkcal/libkcal.pro new file mode 100644 index 0000000..49aa24b --- a/dev/null +++ b/libkcal/libkcal.pro | |||
@@ -0,0 +1,100 @@ | |||
1 | TEMPLATE= lib | ||
2 | CONFIG += qt warn_on | ||
3 | TARGET = microkcal | ||
4 | |||
5 | include( ../variables.pri ) | ||
6 | |||
7 | INCLUDEPATH += ../microkde versit ../microkde/kdecore | ||
8 | #../qtcompat | ||
9 | INCLUDEPATH += ../libical/src/libical | ||
10 | INCLUDEPATH += ../libical/src/libicalss | ||
11 | DESTDIR = ../bin | ||
12 | DEFINES += DESKTOP_VERSION | ||
13 | unix: { | ||
14 | LIBS += ../libical/lib/libical.a | ||
15 | LIBS += ../libical/lib/libicalss.a | ||
16 | OBJECTS_DIR = obj/unix | ||
17 | MOC_DIR = moc/unix | ||
18 | } | ||
19 | win32: { | ||
20 | DEFINES += _WIN32_ | ||
21 | |||
22 | LIBS += ../libical/lib/ical.lib | ||
23 | LIBS += ../libical/lib/icalss.lib | ||
24 | OBJECTS_DIR = obj/win | ||
25 | MOC_DIR = moc/win | ||
26 | |||
27 | } | ||
28 | |||
29 | INTERFACES = \ | ||
30 | |||
31 | HEADERS = \ | ||
32 | alarm.h \ | ||
33 | attachment.h \ | ||
34 | attendee.h \ | ||
35 | calendar.h \ | ||
36 | calendarlocal.h \ | ||
37 | calfilter.h \ | ||
38 | calformat.h \ | ||
39 | calstorage.h \ | ||
40 | compat.h \ | ||
41 | customproperties.h \ | ||
42 | dummyscheduler.h \ | ||
43 | duration.h \ | ||
44 | event.h \ | ||
45 | exceptions.h \ | ||
46 | filestorage.h \ | ||
47 | freebusy.h \ | ||
48 | icaldrag.h \ | ||
49 | icalformat.h \ | ||
50 | icalformatimpl.h \ | ||
51 | imipscheduler.h \ | ||
52 | incidence.h \ | ||
53 | incidencebase.h \ | ||
54 | journal.h \ | ||
55 | period.h \ | ||
56 | person.h \ | ||
57 | qtopiaformat.h \ | ||
58 | recurrence.h \ | ||
59 | scheduler.h \ | ||
60 | todo.h \ | ||
61 | vcaldrag.h \ | ||
62 | vcalformat.h \ | ||
63 | versit/port.h \ | ||
64 | versit/vcc.h \ | ||
65 | versit/vobject.h \ | ||
66 | |||
67 | SOURCES = \ | ||
68 | alarm.cpp \ | ||
69 | attachment.cpp \ | ||
70 | attendee.cpp \ | ||
71 | calendar.cpp \ | ||
72 | calendarlocal.cpp \ | ||
73 | calfilter.cpp \ | ||
74 | calformat.cpp \ | ||
75 | compat.cpp \ | ||
76 | customproperties.cpp \ | ||
77 | dummyscheduler.cpp \ | ||
78 | duration.cpp \ | ||
79 | event.cpp \ | ||
80 | exceptions.cpp \ | ||
81 | filestorage.cpp \ | ||
82 | freebusy.cpp \ | ||
83 | icaldrag.cpp \ | ||
84 | icalformat.cpp \ | ||
85 | icalformatimpl.cpp \ | ||
86 | imipscheduler.cpp \ | ||
87 | incidence.cpp \ | ||
88 | incidencebase.cpp \ | ||
89 | journal.cpp \ | ||
90 | period.cpp \ | ||
91 | person.cpp \ | ||
92 | qtopiaformat.cpp \ | ||
93 | recurrence.cpp \ | ||
94 | scheduler.cpp \ | ||
95 | todo.cpp \ | ||
96 | vcaldrag.cpp \ | ||
97 | vcalformat.cpp \ | ||
98 | versit/vcc.c \ | ||
99 | versit/vobject.c \ | ||
100 | |||