62 lines
1.3 KiB
Prolog
62 lines
1.3 KiB
Prolog
QT += core gui network
|
|
|
|
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 += \
|
|
acceleration.cpp \
|
|
common.cpp \
|
|
keyphase.cpp \
|
|
main.cpp \
|
|
mainwindow.cpp \
|
|
radial_vibration.cpp \
|
|
relaysetting.cpp \
|
|
seismic_monitor.cpp \
|
|
setpoint.cpp \
|
|
singlerelay.cpp \
|
|
tachometer.cpp \
|
|
velocity.cpp
|
|
|
|
HEADERS += \
|
|
acceleration.h \
|
|
common.h \
|
|
data_config.h \
|
|
keyphase.h \
|
|
mainwindow.h \
|
|
radial_vibration.h \
|
|
relaysetting.h \
|
|
seismic_monitor.h \
|
|
setpoint.h \
|
|
singlerelay.h \
|
|
tachometer.h \
|
|
velocity.h
|
|
|
|
FORMS += \
|
|
acceleration.ui \
|
|
keyphase.ui \
|
|
mainwindow.ui \
|
|
radial_vibration.ui \
|
|
relaysetting.ui \
|
|
seismic_monitor.ui \
|
|
setpoint.ui \
|
|
singlerelay.ui \
|
|
tachometer.ui \
|
|
tmrrelayassociation.ui \
|
|
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
|
|
|
|
RESOURCES += \
|
|
qss.qrc
|