source:
src/gui/gui.pro
@
809b5e5
Last change on this file since 809b5e5 was 4b6ae6b, checked in by , 9 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 \ |
[4b6ae6b] | 8 | network \ |
9 | widgets | |
[118b982] | 10 | QMAKE_CLEAN += ../bin/libgui.a |
[e5bc908] | 11 | |
12 | # module dependencies | |
[07ae23a] | 13 | LIBS += -L$$DESTDIR \ |
14 | -lmvc \ | |
15 | -lorm \ | |
16 | -lsql | |
17 | INCLUDEPATH += ../orm \ | |
18 | ../mvc \ | |
19 | ../sql \ | |
20 | ../app | |
21 | DEPENDPATH += . \ | |
22 | ../orm \ | |
23 | ../mvc \ | |
24 | ../sql | |
[8bacb4e] | 25 | POST_TARGETDEPS += $$DESTDIR/liborm.a \ |
[07ae23a] | 26 | $$DESTDIR/libmvc.a \ |
27 | $$DESTDIR/libsql.a | |
28 | maemo { | |
29 | LIBS += -L$$DESTDIR \ | |
30 | -lqalarm | |
[068656d] | 31 | INCLUDEPATH += ../alarm |
[07ae23a] | 32 | DEPENDPATH += ../alarm |
[910109e] | 33 | POST_TARGETDEPS += $$DESTDIR/libqalarm.a |
[068656d] | 34 | } |
[e5bc908] | 35 | |
36 | # A shamelessly long list of sources, headers and forms. | |
37 | # Please note that resources MUST be added to the app module | |
38 | # (which means they need to be added to the test module as well, | |
39 | # but I am sure you can live with that for the time being). | |
[ea638ef] | 40 | |
[07ae23a] | 41 | FORMS += searchhead.ui \ |
42 | mainwindow.ui \ | |
43 | daynavigatorwidget.ui \ | |
44 | about.ui \ | |
45 | eventdialog.ui \ | |
[ea638ef] | 46 | conflictsdialog.ui \ |
[07ae23a] | 47 | tabcontainer.ui \ |
[b431d47] | 48 | settingsdialog.ui \ |
49 | conferenceeditor.ui \ | |
50 | urlinputdialog.ui | |
[ea638ef] | 51 | |
[07ae23a] | 52 | HEADERS += roomstabcontainer.h \ |
53 | trackstabcontainer.h \ | |
54 | favtabcontainer.h \ | |
55 | searchtabcontainer.h \ | |
56 | searchhead.h \ | |
57 | dayviewtabcontainer.h \ | |
[ea638ef] | 58 | conflictdialogcontainer.h \ |
59 | conflictsdialog.h \ | |
[07ae23a] | 60 | mainwindow.h \ |
61 | daynavigatorwidget.h \ | |
62 | eventdialog.h \ | |
63 | tabcontainer.h \ | |
[b431d47] | 64 | settingsdialog.h \ |
65 | conferenceeditor.h \ | |
66 | urlinputdialog.h | |
[ea638ef] | 67 | |
[07ae23a] | 68 | SOURCES += roomstabcontainer.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 | ||
[4b6ae6b] | 90 | OTHER_FILES += \ |
91 | test.qml | |
92 |
Note: See TracBrowser
for help on using the repository browser.