X-Git-Url: https://git.toastfreeware.priv.at/toast/confclerk.git/blobdiff_plain/9bbb44ecc898f46d91ebe36f160f42c283ec591c..9a896cca3a15c160589ff566602aa99bfef87324:/src/gui/gui.pro diff --git a/src/gui/gui.pro b/src/gui/gui.pro index 976ec68..f9f7028 100644 --- a/src/gui/gui.pro +++ b/src/gui/gui.pro @@ -1,21 +1,88 @@ +include(../global.pri) TEMPLATE = lib TARGET = gui DESTDIR = ../bin CONFIG += static -QT += sql +QT += sql \ + xml \ + network +QMAKE_CLEAN += ../bin/libgui.a # module dependencies -LIBS += -L$$DESTDIR -lmodel -orm -INCLUDEPATH += ../orm ../model -DEPENDPATH += . ../orm ../model -TARGETDEPS += $$DESTDIR/liborm.a $$DESTDIR/libmodel.a - +LIBS += -L$$DESTDIR \ + -lmvc \ + -lorm \ + -lsql +INCLUDEPATH += ../orm \ + ../mvc \ + ../sql \ + ../app +DEPENDPATH += . \ + ../orm \ + ../mvc \ + ../sql +POST_TARGETDEPS += $$DESTDIR/liborm.a \ + $$DESTDIR/libmvc.a \ + $$DESTDIR/libsql.a +maemo { + LIBS += -L$$DESTDIR \ + -lqalarm + INCLUDEPATH += ../alarm + DEPENDPATH += ../alarm + POST_TARGETDEPS += $$DESTDIR/libqalarm.a +} # A shamelessly long list of sources, headers and forms. # Please note that resources MUST be added to the app module # (which means they need to be added to the test module as well, # but I am sure you can live with that for the time being). -FORMS += mainwindow.ui -SOURCES += mainwindow.cpp -HEADERS += mainwindow.h + +FORMS += searchhead.ui \ + mainwindow.ui \ + daynavigatorwidget.ui \ + about.ui \ + eventdialog.ui \ + conflictsdialog.ui \ + tabcontainer.ui \ + settingsdialog.ui \ + conferenceeditor.ui \ + urlinputdialog.ui + +HEADERS += roomstabcontainer.h \ + trackstabcontainer.h \ + favtabcontainer.h \ + searchtabcontainer.h \ + searchhead.h \ + dayviewtabcontainer.h \ + conflictdialogcontainer.h \ + conflictsdialog.h \ + mainwindow.h \ + daynavigatorwidget.h \ + eventdialog.h \ + tabcontainer.h \ + settingsdialog.h \ + conferenceeditor.h \ + urlinputdialog.h + +SOURCES += roomstabcontainer.cpp \ + trackstabcontainer.cpp \ + favtabcontainer.cpp \ + searchtabcontainer.cpp \ + searchhead.cpp \ + dayviewtabcontainer.cpp \ + conflictdialogcontainer.cpp \ + conflictsdialog.cpp \ + mainwindow.cpp \ + daynavigatorwidget.cpp \ + eventdialog.cpp \ + tabcontainer.cpp \ + settingsdialog.cpp \ + conferenceeditor.cpp \ + urlinputdialog.cpp + +HEADERS += errormessage.h +SOURCES += errormessage.cpp +CONFIG(maemo5) { + QT += maemo5 +}