TSI_Config/TSI_Config.pro

67 lines
1.4 KiB
Prolog
Raw Normal View History

2025-03-01 13:40:11 +08:00
QT += core gui network
2024-12-17 18:53:41 +08:00
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
CONFIG += c++11
# 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 += \
2025-03-13 15:10:35 +08:00
MyTcpClient.cpp \
2024-12-17 18:53:41 +08:00
acceleration.cpp \
2025-03-01 13:40:11 +08:00
common.cpp \
2024-12-17 18:53:41 +08:00
keyphase.cpp \
main.cpp \
mainwindow.cpp \
radial_vibration.cpp \
2025-03-04 16:00:19 +08:00
relaysetting.cpp \
seismic_monitor.cpp \
2024-12-17 18:53:41 +08:00
setpoint.cpp \
2025-02-11 19:54:22 +08:00
singlerelay.cpp \
2024-12-17 18:53:41 +08:00
tachometer.cpp \
velocity.cpp
HEADERS += \
2025-03-13 15:10:35 +08:00
MyTcpClient.h \
2024-12-17 18:53:41 +08:00
acceleration.h \
2025-03-28 14:13:30 +08:00
acceleration_ds.h \
2025-03-01 13:40:11 +08:00
common.h \
2025-02-11 19:54:22 +08:00
data_config.h \
2025-03-28 14:13:30 +08:00
displacement_ds.h \
2024-12-17 18:53:41 +08:00
keyphase.h \
mainwindow.h \
radial_vibration.h \
2025-03-04 16:00:19 +08:00
relaysetting.h \
seismic_monitor.h \
2024-12-17 18:53:41 +08:00
setpoint.h \
2025-02-11 19:54:22 +08:00
singlerelay.h \
2024-12-17 18:53:41 +08:00
tachometer.h \
2025-03-28 14:13:30 +08:00
velocity.h \
velocity_ds.h
2024-12-17 18:53:41 +08:00
FORMS += \
acceleration.ui \
keyphase.ui \
mainwindow.ui \
radial_vibration.ui \
2025-03-04 16:00:19 +08:00
relaysetting.ui \
seismic_monitor.ui \
2024-12-17 18:53:41 +08:00
setpoint.ui \
2024-12-19 15:30:02 +08:00
singlerelay.ui \
2024-12-17 18:53:41 +08:00
tachometer.ui \
2024-12-19 15:30:02 +08:00
tmrrelayassociation.ui \
2024-12-17 18:53:41 +08:00
velocity.ui
# Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target
DISTFILES += \
TSI_Config.pro.user
2025-03-11 16:42:00 +08:00
RESOURCES += \
qss.qrc