gestionale/argento/argento.pro

63 lines
1.7 KiB
Prolog
Raw Normal View History

2019-08-03 15:24:44 +00:00
#-------------------------------------------------
# Project created by QtCreator 2019-08-03T15:05:59
# adapted by giomba
2019-08-03 15:24:44 +00:00
#-------------------------------------------------
QT += core gui sql
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = argento
2019-08-03 15:24:44 +00:00
TEMPLATE = app
# The following define makes your compiler emit warnings if you use
# any feature of Qt which has been marked as deprecated (the exact warnings
# depend on your compiler). Please consult the documentation of the
# deprecated API in order to know how to port your code away from it.
DEFINES += QT_DEPRECATED_WARNINGS
# You can also make your code fail to compile if you use deprecated APIs.
# In order to do so, uncomment the following line.
# You can also select to disable deprecated APIs only up to a certain version of Qt.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
2020-09-21 07:58:53 +00:00
DEFINES += GOLEM_CURRENT_COMMIT="\\\"$(shell git rev-parse --short=16 HEAD)\\\""
2019-08-03 15:24:44 +00:00
CONFIG += c++11
SOURCES += \
2019-08-07 12:12:36 +00:00
EditWindow.cpp \
2019-08-03 15:24:44 +00:00
main.cpp \
2019-08-07 12:12:36 +00:00
MainWindow.cpp \
2019-08-06 13:33:11 +00:00
status.cpp \
2020-09-19 23:18:10 +00:00
fullQuery.cpp \
2020-09-20 20:27:38 +00:00
SociListTab.cpp \
2020-09-21 07:58:53 +00:00
RenewalTab.cpp \
AboutWindow.cpp
2019-08-05 21:52:33 +00:00
2019-08-03 15:24:44 +00:00
HEADERS += \
2019-08-07 12:12:36 +00:00
EditWindow.h \
MainWindow.h \
2019-08-06 13:33:11 +00:00
status.h \
2020-09-19 23:18:10 +00:00
fullQuery.h \
2020-09-20 20:27:38 +00:00
SociListTab.h \
2020-09-21 07:58:53 +00:00
RenewalTab.h \
AboutWindow.h
2019-08-05 21:52:33 +00:00
2019-08-03 15:24:44 +00:00
FORMS += \
2019-08-07 12:12:36 +00:00
MainWindow.ui \
2020-09-19 23:18:10 +00:00
EditWindow.ui \
2020-09-20 20:27:38 +00:00
SociListTab.ui \
2020-09-21 07:58:53 +00:00
RenewalTab.ui \
AboutWindow.ui
RESOURCES += \
resources.qrc
2019-08-03 15:24:44 +00:00
# Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target