ToastFreeware
/
toast
/
confclerk.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
work on alarm
[toast/confclerk.git]
/
src
/
mvc
/
mvc.pro
1
include(../global.pri)
2
TEMPLATE = lib
3
TARGET = mvc
4
DESTDIR = ../bin
5
CONFIG += static
6
QT += sql
7
8
# module dependencies
9
LIBS += -L$$DESTDIR -lorm
10
INCLUDEPATH += ../orm
11
DEPENDPATH += . ../orm
12
TARGETDEPS += $$DESTDIR/liborm.a
13
maemo {
14
LIBS += -L$$DESTDIR -lqalarm -lalarm
15
INCLUDEPATH += ../alarm
16
DEPENDPATH += ../alarm
17
TARGETDEPS += $$DESTDIR/libqalarm.a
18
}
19
20
HEADERS += \
21
event.h \
22
conference.h \
23
delegate.h \
24
eventmodel.h \
25
treeview.h
26
SOURCES += \
27
event.cpp \
28
conference.cpp \
29
delegate.cpp \
30
eventmodel.cpp \
31
treeview.cpp
32