qt5
Last change
on this file since ea638ef was
ea638ef,
checked in by pavelpa <pavelpa@…>, 13 years ago
|
implemented 'conflicts' dialog
- displays rooms instead of conflicts for now
- needs to implement additional methods in Event, ...
|
-
Property mode set to
100644
|
File size:
1.8 KB
|
Line | |
---|
1 | include(../global.pri) |
---|
2 | TEMPLATE = lib |
---|
3 | TARGET = gui |
---|
4 | DESTDIR = ../bin |
---|
5 | CONFIG += static |
---|
6 | QT += sql \ |
---|
7 | xml |
---|
8 | |
---|
9 | # module dependencies |
---|
10 | LIBS += -L$$DESTDIR \ |
---|
11 | -lmvc \ |
---|
12 | -lorm \ |
---|
13 | -lsql |
---|
14 | INCLUDEPATH += ../orm \ |
---|
15 | ../mvc \ |
---|
16 | ../sql \ |
---|
17 | ../app |
---|
18 | DEPENDPATH += . \ |
---|
19 | ../orm \ |
---|
20 | ../mvc \ |
---|
21 | ../sql |
---|
22 | TARGETDEPS += $$DESTDIR/liborm.a \ |
---|
23 | $$DESTDIR/libmvc.a \ |
---|
24 | $$DESTDIR/libsql.a |
---|
25 | maemo { |
---|
26 | LIBS += -L$$DESTDIR \ |
---|
27 | -lqalarm |
---|
28 | INCLUDEPATH += ../alarm |
---|
29 | DEPENDPATH += ../alarm |
---|
30 | TARGETDEPS += $$DESTDIR/libqalarm.a |
---|
31 | } |
---|
32 | |
---|
33 | # A shamelessly long list of sources, headers and forms. |
---|
34 | # Please note that resources MUST be added to the app module |
---|
35 | # (which means they need to be added to the test module as well, |
---|
36 | # but I am sure you can live with that for the time being). |
---|
37 | |
---|
38 | FORMS += searchhead.ui \ |
---|
39 | mainwindow.ui \ |
---|
40 | daynavigatorwidget.ui \ |
---|
41 | importschedulewidget.ui \ |
---|
42 | about.ui \ |
---|
43 | eventdialog.ui \ |
---|
44 | conflictsdialog.ui \ |
---|
45 | tabcontainer.ui \ |
---|
46 | mapwindow.ui |
---|
47 | |
---|
48 | HEADERS += roomstabcontainer.h \ |
---|
49 | nowtabcontainer.h \ |
---|
50 | trackstabcontainer.h \ |
---|
51 | favtabcontainer.h \ |
---|
52 | searchtabcontainer.h \ |
---|
53 | searchhead.h \ |
---|
54 | dayviewtabcontainer.h \ |
---|
55 | conflictdialogcontainer.h \ |
---|
56 | conflictsdialog.h \ |
---|
57 | mainwindow.h \ |
---|
58 | daynavigatorwidget.h \ |
---|
59 | importschedulewidget.h \ |
---|
60 | eventdialog.h \ |
---|
61 | tabwidget.h \ |
---|
62 | tabcontainer.h \ |
---|
63 | mapwindow.h |
---|
64 | |
---|
65 | SOURCES += roomstabcontainer.cpp \ |
---|
66 | nowtabcontainer.cpp \ |
---|
67 | trackstabcontainer.cpp \ |
---|
68 | favtabcontainer.cpp \ |
---|
69 | searchtabcontainer.cpp \ |
---|
70 | searchhead.cpp \ |
---|
71 | dayviewtabcontainer.cpp \ |
---|
72 | conflictdialogcontainer.cpp \ |
---|
73 | conflictsdialog.cpp \ |
---|
74 | mainwindow.cpp \ |
---|
75 | daynavigatorwidget.cpp \ |
---|
76 | importschedulewidget.cpp \ |
---|
77 | eventdialog.cpp \ |
---|
78 | tabwidget.cpp \ |
---|
79 | tabcontainer.cpp \ |
---|
80 | mapwindow.cpp |
---|
81 | |
---|
82 | maemo { |
---|
83 | FORMS += alarmdialog.ui |
---|
84 | HEADERS += alarmdialog.h |
---|
85 | SOURCES += alarmdialog.cpp |
---|
86 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.