fixed: broken compilation for linux caused by previous commit
[toast/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 xml
7
8 # module dependencies
9 LIBS += -L$$DESTDIR -lmvc -lorm -lsql -lqalarm
10 INCLUDEPATH += ../orm ../mvc ../sql ../alarm
11 DEPENDPATH += . ../orm ../mvc ../sql ../alarm
12 TARGETDEPS += $$DESTDIR/liborm.a $$DESTDIR/libmvc.a $$DESTDIR/libsql.a $$DESTDIR/libqalarm.a
13 maemo {
14     LIBS += -L$$DESTDIR -lqalarm
15     INCLUDEPATH += ../alarm
16     DEPENDPATH +=  ../alarm
17     TARGETDEPS +=  $$DESTDIR/libqalarm.a
18 }
19
20
21 # A shamelessly long list of sources, headers and forms.
22 # Please note that resources MUST be added to the app module
23 # (which means they need to be added to the test module as well,
24 # but I am sure you can live with that for the time being).
25
26 FORMS += mainwindow.ui \
27          daynavigatorwidget.ui \
28          about.ui
29
30 HEADERS += mainwindow.h \
31            daynavigatorwidget.h
32
33 SOURCES += mainwindow.cpp \
34            daynavigatorwidget.cpp
35
36 maemo {
37     FORMS += alarmdialog.ui
38     HEADERS += alarmdialog.h
39     SOURCES += alarmdialog.cpp
40 }
41