12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- QT += quick charts
- QT += serialport
- QT += testlib
- QT += widgets
- QT += virtualkeyboard axcontainer
- # 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 += \
- DLog.cpp \
- Modbus.cpp \
- Msgbox.cpp \
- Standard.cpp \
- TestService.cpp \
- main.cpp \
- pid.cpp \
- report.cpp \
- serialport.cpp \
- serialui.cpp \
- tank.cpp
- RESOURCES += qml.qrc
- RC_ICONS += $$PWD/valve.ico
- DEFINES += QT_MESSAGELOGCONTEXT
- # Additional import path used to resolve QML modules in Qt Creator's code model
- QML_IMPORT_PATH =
- # Additional import path used to resolve QML modules just for Qt Quick Designer
- QML_DESIGNER_IMPORT_PATH =
- # Default rules for deployment.
- qnx: target.path = /tmp/$${TARGET}/bin
- else: unix:!android: target.path = /opt/$${TARGET}/bin
- !isEmpty(target.path): INSTALLS += target
- HEADERS += \
- DLog.h \
- Modbus.h \
- Msgbox.h \
- Standard.h \
- TestService.h \
- pid.h \
- report.h \
- serialport.h \
- serialui.h \
- tank.h
- DISTFILES +=
|