qt5
Last change
on this file since 05afe5f was
05afe5f,
checked in by pavelpa <pavelpa@…>, 13 years ago
|
implemented 'tab container' widget, which groups daynavigator with treeview
- moved functionality from mainwindow to tabcontainer
- TODO: 'search' tab not done yet
|
-
Property mode set to
100644
|
File size:
1.4 KB
|
Line | |
---|
1 | include(../global.pri) |
---|
2 | TEMPLATE = lib |
---|
3 | TARGET = gui |
---|
4 | DESTDIR = ../bin |
---|
5 | CONFIG += static |
---|
6 | QT += sql xml |
---|
7 | |
---|
8 | # module dependencies |
---|
9 | LIBS += -L$$DESTDIR -lmvc -lorm -lsql |
---|
10 | INCLUDEPATH += ../orm ../mvc ../sql ../app |
---|
11 | DEPENDPATH += . ../orm ../mvc ../sql |
---|
12 | TARGETDEPS += $$DESTDIR/liborm.a $$DESTDIR/libmvc.a $$DESTDIR/libsql.a |
---|
13 | maemo { |
---|
14 | LIBS += -L$$DESTDIR -lqalarm |
---|
15 | INCLUDEPATH += ../alarm |
---|
16 | DEPENDPATH += ../alarm |
---|
17 | TARGETDEPS += $$DESTDIR/libqalarm.a |
---|
18 | } |
---|
19 | |
---|
20 | |
---|
21 | # A shamelessly long list of sources, headers and forms. |
---|
22 | # Please note that resources MUST be added to the app module |
---|
23 | # (which means they need to be added to the test module as well, |
---|
24 | # but I am sure you can live with that for the time being). |
---|
25 | |
---|
26 | FORMS += mainwindow.ui \ |
---|
27 | daynavigatorwidget.ui \ |
---|
28 | importschedulewidget.ui \ |
---|
29 | about.ui \ |
---|
30 | eventdialog.ui \ |
---|
31 | tabcontainer.ui \ |
---|
32 | mapwindow.ui |
---|
33 | |
---|
34 | HEADERS += mainwindow.h \ |
---|
35 | daynavigatorwidget.h \ |
---|
36 | importschedulewidget.h \ |
---|
37 | eventdialog.h \ |
---|
38 | tabwidget.h \ |
---|
39 | tabcontainer.h \ |
---|
40 | mapwindow.h |
---|
41 | |
---|
42 | SOURCES += mainwindow.cpp \ |
---|
43 | daynavigatorwidget.cpp \ |
---|
44 | importschedulewidget.cpp \ |
---|
45 | eventdialog.cpp \ |
---|
46 | tabwidget.cpp \ |
---|
47 | tabcontainer.cpp \ |
---|
48 | mapwindow.cpp |
---|
49 | |
---|
50 | maemo { |
---|
51 | FORMS += alarmdialog.ui |
---|
52 | HEADERS += alarmdialog.h |
---|
53 | SOURCES += alarmdialog.cpp |
---|
54 | } |
---|
55 | |
---|
Note: See
TracBrowser
for help on using the repository browser.