qt5
Last change
on this file since 67c59a7 was
92995da,
checked in by pavelpa <pavelpa@…>, 13 years ago
|
just some directory renaming
- renamed 'model' to 'mvc' (Model-View-Controller), since it contains also 'delegate' and 'view'
|
-
Property mode set to
100644
|
File size:
726 bytes
|
Line | |
---|
1 | TEMPLATE = lib |
---|
2 | TARGET = gui |
---|
3 | DESTDIR = ../bin |
---|
4 | CONFIG += static |
---|
5 | QT += sql xml |
---|
6 | |
---|
7 | # module dependencies |
---|
8 | LIBS += -L$$DESTDIR -lmvc -lorm -lsql |
---|
9 | INCLUDEPATH += ../orm ../mvc ../sql |
---|
10 | DEPENDPATH += . ../orm ../mvc ../sql |
---|
11 | TARGETDEPS += $$DESTDIR/liborm.a $$DESTDIR/libmvc.a $$DESTDIR/libsql.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 | |
---|
19 | FORMS += mainwindow.ui \ |
---|
20 | daynavigatorwidget.ui \ |
---|
21 | about.ui |
---|
22 | |
---|
23 | HEADERS += mainwindow.h \ |
---|
24 | daynavigatorwidget.h |
---|
25 | |
---|
26 | SOURCES += mainwindow.cpp \ |
---|
27 | daynavigatorwidget.cpp |
---|
28 | |
---|
Note: See
TracBrowser
for help on using the repository browser.