support for creating GUI via QtCreator added
[toast/confclerk.git] / src / gui / gui.pro
1 TEMPLATE = lib
2 TARGET = gui
3 DESTDIR = ../bin
4 CONFIG += static
5 QT += sql
6
7 # module dependencies
8 LIBS += -L$$DESTDIR -lmodel -orm
9 INCLUDEPATH += ../orm ../model
10 DEPENDPATH += . ../orm ../model
11 TARGETDEPS += $$DESTDIR/liborm.a $$DESTDIR/libmodel.a
12
13
14 # A shamelessly long list of sources, headers and forms.
15 # Please note that resources MUST be added to the app module
16 # (which means they need to be added to the test module as well,
17 # but I am sure you can live with that for the time being).
18 FORMS += mainwindow.ui
19 SOURCES += mainwindow.cpp
20 HEADERS += mainwindow.h
21