3500/DataWatch3500_GUI.pro

194 lines
4.8 KiB
Prolog
Raw Normal View History

2023-04-14 19:30:30 +08:00
#-------------------------------------------------
#
# Project created by QtCreator 2022-11-23T21:22:20
#
#-------------------------------------------------
2024-09-11 16:37:00 +08:00
QT += core gui network charts
2023-04-14 19:30:30 +08:00
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets sql ftp printsupport
TARGET = DataWatch3500_GUI
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
2023-10-19 14:15:31 +08:00
QMAKE_CXXFLAGS += -execution-charset:utf-8
2023-04-14 19:30:30 +08:00
CONFIG += c++11
SOURCES += \
AddChannel.cpp \
2023-04-27 19:48:15 +08:00
AlarmDetails.cpp \
2024-07-04 15:23:26 +08:00
Backup.cpp \
2023-04-14 19:30:30 +08:00
CharacteristicList.cpp \
Configuration.cpp \
CopyChannelSetting.cpp \
CopyDatFile.cpp \
2024-07-04 15:23:26 +08:00
CustomFilter.cpp \
2023-04-14 19:30:30 +08:00
DIO_Board.cpp \
2023-10-19 14:15:31 +08:00
DataGraphView.cpp \
2023-04-14 19:30:30 +08:00
FileServerConfig.cpp \
HistoryAlarm.cpp \
2024-07-04 15:23:26 +08:00
ImportConfig.cpp \
2023-04-27 19:48:15 +08:00
Mqttclient.cpp \
2024-04-24 14:41:13 +08:00
MyTreeView.cpp \
2023-04-14 19:30:30 +08:00
NTPServerConfig.cpp \
NetMgr.cpp \
2023-10-19 14:15:31 +08:00
OtherConfig.cpp \
2023-04-14 19:30:30 +08:00
PSConfig.cpp \
2023-04-27 19:48:15 +08:00
QGraphicsMovieItem.cpp \
QMyTableViewBtnDelegate.cpp \
2023-04-14 19:30:30 +08:00
RealTimeAlarm.cpp \
SlowSpeedChannelSetting.cpp \
SystemSelfcheck.cpp \
TableHeaderView.cpp \
TerminalInfo.cpp \
TrendGraph.cpp \
TriggerConfig.cpp \
ViewTriggerConfig.cpp \
WaveDisplay.cpp \
WokingConditionConfig.cpp \
2023-10-19 14:15:31 +08:00
customrectitem.cpp \
form.cpp \
2023-04-14 19:30:30 +08:00
ftpclient.cpp \
global.cpp \
headerView.cpp \
2023-04-27 19:48:15 +08:00
log.cpp \
2023-04-14 19:30:30 +08:00
mainwindow.cpp \
main.cpp \
2023-10-19 14:15:31 +08:00
mygraphicrectitem.cpp \
2023-04-14 19:30:30 +08:00
qcustomplot.cpp \
quihelper.cpp \
commonfun.cpp \
realtimeform.cpp \
MyCustomGraphicsItem.cpp \
ChannelSetting.cpp \
ChannelList.cpp \
BoardSetting.cpp \
UnitSetting.cpp \
WorkingCondition.cpp \
sqlitedb.cpp
HEADERS += \
AddChannel.h \
2023-04-27 19:48:15 +08:00
AlarmDetails.h \
2024-07-04 15:23:26 +08:00
Backup.h \
2023-04-14 19:30:30 +08:00
CharacteristicList.h \
Configuration.h \
CopyChannelSetting.h \
CopyDatFile.h \
2024-07-04 15:23:26 +08:00
CustomFilter.h \
CustomGraphicsItemGroup.h \
2023-04-14 19:30:30 +08:00
DIO_Board.h \
2023-10-19 14:15:31 +08:00
DataGraphView.h \
2023-04-14 19:30:30 +08:00
FileServerConfig.h \
HistoryAlarm.h \
2024-07-04 15:23:26 +08:00
ImportConfig.h \
2023-04-27 19:48:15 +08:00
Mqttclient.h \
2024-04-24 14:41:13 +08:00
MyTreeView.h \
2023-04-14 19:30:30 +08:00
NTPServerConfig.h \
NetMgr.h \
2023-10-19 14:15:31 +08:00
OtherConfig.h \
2023-04-14 19:30:30 +08:00
PSConfig.h \
2023-04-27 19:48:15 +08:00
QGraphicsMovieItem.h \
QMyTableViewBtnDelegate.h \
2023-04-14 19:30:30 +08:00
RealTimeAlarm.h \
SlowSpeedChannelSetting.h \
SystemSelfcheck.h \
TableHeaderView.h \
TerminalInfo.h \
TrendGraph.h \
TriggerConfig.h \
ViewTriggerConfig.h \
WaveDisplay.h \
WokingConditionConfig.h \
2023-10-19 14:15:31 +08:00
customrectitem.h \
form.h \
2023-04-14 19:30:30 +08:00
ftpclient.h \
global.h \
headerView.h \
2023-04-27 19:48:15 +08:00
log.h \
2023-04-14 19:30:30 +08:00
mainwindow.h \
2023-10-19 14:15:31 +08:00
mygraphicrectitem.h \
2023-04-14 19:30:30 +08:00
qcustomplot.h \
quihelper.h \
commonfun.h \
realtimeform.h \
MyCustomGraphicsItem.h \
ChannelSetting.h \
ChannelList.h \
BoardSetting.h \
UnitSetting.h \
WorkingCondition.h \
2023-10-19 14:15:31 +08:00
sqlitedb.h \
utils_global.h
2023-04-14 19:30:30 +08:00
FORMS += \
AddChannel.ui \
2023-04-27 19:48:15 +08:00
AlarmDetails.ui \
2024-07-04 15:23:26 +08:00
BackUp.ui \
Backup.ui \
2023-04-14 19:30:30 +08:00
CharacteristicList.ui \
Configuration.ui \
CopyChannelSetting.ui \
2023-10-19 14:15:31 +08:00
CopyDatFile.ui \
2024-07-04 15:23:26 +08:00
CustomFilter.ui \
2023-04-14 19:30:30 +08:00
DIO_Board.ui \
2023-10-19 14:15:31 +08:00
DataGraphView.ui \
2023-04-14 19:30:30 +08:00
FileServerConfig.ui \
HistoryAlarm.ui \
2024-07-04 15:23:26 +08:00
ImportConfig.ui \
2023-04-14 19:30:30 +08:00
NTPServerConfig.ui \
2023-10-19 14:15:31 +08:00
OtherConfig.ui \
2023-04-14 19:30:30 +08:00
PSConfig.ui \
RealTimeAlarm.ui \
SlowSpeedChannelSetting.ui \
SystemSelfcheck.ui \
TerminalInfo.ui \
TrendGraph.ui \
TriggerConfig.ui \
ViewTriggerConfig.ui \
WaveDisplay.ui \
WokingConditionConfig.ui \
2023-10-19 14:15:31 +08:00
form.ui \
2023-04-14 19:30:30 +08:00
mainwindow.ui \
realtimeform.ui \
channelsetting.ui \
channellist.ui \
boardsetting.ui \
UnitSetting.ui \
WorkingCondition.ui
# Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target
RESOURCES += \
qss.qrc
DISTFILES += \
image/Btn/btn.png \
image/Btn/btn_p.png
2023-04-27 19:48:15 +08:00
INCLUDEPATH += $$PWD/include/mqtt
2023-10-19 14:15:31 +08:00
INCLUDEPATH += $$PWD/include/fftw
2024-09-11 16:37:00 +08:00
win32:CONFIG(release, debug|release): LIBS += -L$$PWD/lib/fftw/ -llibfftw3-3 -llibfftw3f-3 -llibfftw3l-3
else:win32:CONFIG(debug, debug|release): LIBS += -L$$PWD/lib/fftw/ -llibfftw3-3 -llibfftw3f-3 -llibfftw3l-3
else:unix: LIBS += -L$$PWD/lib/fftw/ -lfftw3
2023-04-27 19:48:15 +08:00
win32:CONFIG(release, debug|release): LIBS += -L$$PWD/lib/mqtt/ -lQt5Qmqtt
else:win32:CONFIG(debug, debug|release): LIBS += -L$$PWD/lib/mqtt/ -lQt5Qmqttd
2024-09-11 16:37:00 +08:00
else:unix: LIBS += -L$$PWD/lib/mqtt/ -lQt5Qmqtt