[svn-upgrade] new version confclerk (0.5.1)
[debian/confclerk.git] / src / gui / gui.pro
1 include(../global.pri)
2 TEMPLATE = lib
3 TARGET = gui
4 DESTDIR = ../bin
5 CONFIG += static
6 QT += sql \
7     xml \
8     network
9
10 # module dependencies
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 POST_TARGETDEPS += $$DESTDIR/liborm.a \
24     $$DESTDIR/libmvc.a \
25     $$DESTDIR/libsql.a
26 maemo { 
27     LIBS += -L$$DESTDIR \
28         -lqalarm
29     INCLUDEPATH += ../alarm
30     DEPENDPATH += ../alarm
31     POST_TARGETDEPS += $$DESTDIR/libqalarm.a
32 }
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).
38
39 FORMS += searchhead.ui \
40     mainwindow.ui \
41     daynavigatorwidget.ui \
42     about.ui \
43     eventdialog.ui \
44     conflictsdialog.ui \
45     tabcontainer.ui \
46     settingsdialog.ui \
47     conferenceeditor.ui \
48     urlinputdialog.ui
49
50 HEADERS += roomstabcontainer.h \
51     nowtabcontainer.h \
52     trackstabcontainer.h \
53     favtabcontainer.h \
54     searchtabcontainer.h \
55     searchhead.h \
56     dayviewtabcontainer.h \
57     conflictdialogcontainer.h \
58     conflictsdialog.h \
59     mainwindow.h \
60     daynavigatorwidget.h \
61     eventdialog.h \
62     tabcontainer.h \
63     settingsdialog.h \
64     conferenceeditor.h \
65     urlinputdialog.h
66
67 SOURCES += roomstabcontainer.cpp \
68     nowtabcontainer.cpp \
69     trackstabcontainer.cpp \
70     favtabcontainer.cpp \
71     searchtabcontainer.cpp \
72     searchhead.cpp \
73     dayviewtabcontainer.cpp \
74     conflictdialogcontainer.cpp \
75     conflictsdialog.cpp \
76     mainwindow.cpp \
77     daynavigatorwidget.cpp \
78     eventdialog.cpp \
79     tabcontainer.cpp \
80     settingsdialog.cpp \
81     conferenceeditor.cpp \
82     urlinputdialog.cpp
83
84 HEADERS += errormessage.h
85 SOURCES += errormessage.cpp
86 CONFIG(maemo5) {
87     QT += maemo5
88 }
89
90 #maemo { 
91 #    FORMS += alarmdialog.ui
92 #    HEADERS += alarmdialog.h
93 #    SOURCES += alarmdialog.cpp
94 #}