X-Git-Url: https://git.toastfreeware.priv.at/toast/confclerk.git/blobdiff_plain/6bd729b39f0bf6e49d9ea3ea08bcb969045acfb4..9a896cca3a15c160589ff566602aa99bfef87324:/src/gui/gui.pro diff --git a/src/gui/gui.pro b/src/gui/gui.pro index a5389f2..f9f7028 100644 --- a/src/gui/gui.pro +++ b/src/gui/gui.pro @@ -3,45 +3,86 @@ TEMPLATE = lib TARGET = gui DESTDIR = ../bin CONFIG += static -QT += sql xml +QT += sql \ + xml \ + network +QMAKE_CLEAN += ../bin/libgui.a # module dependencies -LIBS += -L$$DESTDIR -lmvc -lorm -lsql -INCLUDEPATH += ../orm ../mvc ../sql -DEPENDPATH += . ../orm ../mvc ../sql -TARGETDEPS += $$DESTDIR/liborm.a $$DESTDIR/libmvc.a $$DESTDIR/libsql.a -maemo { - LIBS += -L$$DESTDIR -lqalarm +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 - TARGETDEPS += $$DESTDIR/libqalarm.a + 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 \ - daynavigatorwidget.ui \ - about.ui \ - eventdialog.ui \ - mapwindow.ui +FORMS += searchhead.ui \ + mainwindow.ui \ + daynavigatorwidget.ui \ + about.ui \ + eventdialog.ui \ + conflictsdialog.ui \ + tabcontainer.ui \ + settingsdialog.ui \ + conferenceeditor.ui \ + urlinputdialog.ui -HEADERS += mainwindow.h \ - daynavigatorwidget.h \ - eventdialog.h \ - mapwindow.h +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 += mainwindow.cpp \ - daynavigatorwidget.cpp \ - eventdialog.cpp \ - mapwindow.cpp +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 -maemo { - FORMS += alarmdialog.ui - HEADERS += alarmdialog.h - SOURCES += alarmdialog.cpp +HEADERS += errormessage.h +SOURCES += errormessage.cpp +CONFIG(maemo5) { + QT += maemo5 }