TEMPLATE = lib TARGET = gui DESTDIR = ../bin CONFIG += static QT += sql xml # 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 # 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 HEADERS += mainwindow.h \ daynavigatorwidget.h SOURCES += mainwindow.cpp \ daynavigatorwidget.cpp