source:
src/gui/gui.pro
@
e6ab8a2
Last change on this file since e6ab8a2 was e6ab8a2, checked in by , 11 years ago | |
---|---|
|
|
File size: 2.0 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 | |
[8bacb4e] | 23 | POST_TARGETDEPS += $$DESTDIR/liborm.a \ |
[07ae23a] | 24 | $$DESTDIR/libmvc.a \ |
25 | $$DESTDIR/libsql.a | |
26 | maemo { | |
27 | LIBS += -L$$DESTDIR \ | |
28 | -lqalarm | |
[068656d] | 29 | INCLUDEPATH += ../alarm |
[07ae23a] | 30 | DEPENDPATH += ../alarm |
[910109e] | 31 | POST_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 | about.ui \ | |
43 | eventdialog.ui \ | |
[ea638ef] | 44 | conflictsdialog.ui \ |
[07ae23a] | 45 | tabcontainer.ui \ |
[b431d47] | 46 | settingsdialog.ui \ |
47 | conferenceeditor.ui \ | |
48 | urlinputdialog.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 | eventdialog.h \ | |
62 | tabcontainer.h \ | |
[b431d47] | 63 | settingsdialog.h \ |
64 | conferenceeditor.h \ | |
65 | urlinputdialog.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 | eventdialog.cpp \ | |
79 | tabcontainer.cpp \ | |
[b431d47] | 80 | settingsdialog.cpp \ |
81 | conferenceeditor.cpp \ | |
82 | urlinputdialog.cpp | |
[ea638ef] | 83 | |
[3329d39] | 84 | HEADERS += errormessage.h |
85 | SOURCES += errormessage.cpp | |
86 | CONFIG(maemo5) { | |
87 | QT += maemo5 | |
88 | } | |
89 | ||
[6831c6a] | 90 | #maemo { |
91 | # FORMS += alarmdialog.ui | |
92 | # HEADERS += alarmdialog.h | |
93 | # SOURCES += alarmdialog.cpp | |
94 | #} |
Note: See TracBrowser
for help on using the repository browser.