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