qt5
Last change
on this file since 4b6ae6b was
4b6ae6b,
checked in by Philipp Spitzer <philipp@…>, 9 years ago
|
Now the application compiles for QT5.
Note that the location of the database in Linux has changed from
~/.local/share/data/Toastfreeware/ConfClerk
to
~/.local/share/Toastfreeware/ConfClerk
|
-
Property mode set to
100644
|
File size:
763 bytes
|
Line | |
---|
1 | include(../global.pri) |
---|
2 | TEMPLATE = lib |
---|
3 | TARGET = mvc |
---|
4 | DESTDIR = ../bin |
---|
5 | CONFIG += static |
---|
6 | QT += sql \ |
---|
7 | widgets |
---|
8 | QMAKE_CLEAN += ../bin/libmvc.a |
---|
9 | |
---|
10 | # module dependencies |
---|
11 | LIBS += -L$$DESTDIR \ |
---|
12 | -lorm |
---|
13 | INCLUDEPATH += ../orm ../app |
---|
14 | DEPENDPATH += . \ |
---|
15 | ../orm |
---|
16 | POST_TARGETDEPS += $$DESTDIR/liborm.a |
---|
17 | maemo { |
---|
18 | LIBS += -L$$DESTDIR \ |
---|
19 | -lqalarm \ |
---|
20 | -lalarm |
---|
21 | INCLUDEPATH += ../alarm |
---|
22 | DEPENDPATH += ../alarm |
---|
23 | POST_TARGETDEPS += $$DESTDIR/libqalarm.a |
---|
24 | } |
---|
25 | HEADERS += event.h \ |
---|
26 | conference.h \ |
---|
27 | track.h \ |
---|
28 | delegate.h \ |
---|
29 | eventmodel.h \ |
---|
30 | treeview.h \ |
---|
31 | room.h \ |
---|
32 | conferencemodel.h |
---|
33 | SOURCES += event.cpp \ |
---|
34 | conference.cpp \ |
---|
35 | track.cpp \ |
---|
36 | delegate.cpp \ |
---|
37 | eventmodel.cpp \ |
---|
38 | treeview.cpp \ |
---|
39 | room.cpp \ |
---|
40 | conferencemodel.cpp |
---|
Note: See
TracBrowser
for help on using the repository browser.