ToastFreeware
/
toast
/
confclerk.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
e9c9d63447770e3d6e04d9c210a6849ef9cc283c
[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 \
10
-lorm
11
INCLUDEPATH += ../orm ../app
12
DEPENDPATH += . \
13
../orm
14
TARGETDEPS += $$DESTDIR/liborm.a
15
maemo {
16
LIBS += -L$$DESTDIR \
17
-lqalarm \
18
-lalarm
19
INCLUDEPATH += ../alarm
20
DEPENDPATH += ../alarm
21
TARGETDEPS += $$DESTDIR/libqalarm.a
22
}
23
HEADERS += room.h \
24
event.h \
25
conference.h \
26
track.h \
27
delegate.h \
28
eventmodel.h \
29
treeview.h
30
SOURCES += room.cpp \
31
event.cpp \
32
conference.cpp \
33
track.cpp \
34
delegate.cpp \
35
eventmodel.cpp \
36
treeview.cpp