diff options
Diffstat (limited to 'CashFlo.pro')
| -rw-r--r-- | CashFlo.pro | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/CashFlo.pro b/CashFlo.pro new file mode 100644 index 0000000..70333c2 --- /dev/null +++ b/CashFlo.pro @@ -0,0 +1,27 @@ +QT += core gui sql + +greaterThan(QT_MAJOR_VERSION, 4): QT += widgets + +CONFIG += c++17 + +# You can make your code fail to compile if it uses deprecated APIs. +# In order to do so, uncomment the following line. +#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0 + +SOURCES += \ + main.cpp \ + cashflow.cpp \ + database.cpp + +HEADERS += \ + cashflow.h \ + database.h \ + transaction.h + +FORMS += \ + cashflow.ui + +# Default rules for deployment. +qnx: target.path = /tmp/$${TARGET}/bin +else: unix:!android: target.path = /opt/$${TARGET}/bin +!isEmpty(target.path): INSTALLS += target |
