ValveTest.pro 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. QT += quick charts
  2. QT += serialport
  3. QT += testlib
  4. QT += widgets
  5. QT += virtualkeyboard axcontainer
  6. # You can make your code fail to compile if it uses deprecated APIs.
  7. # In order to do so, uncomment the following line.
  8. #DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
  9. SOURCES += \
  10. DLog.cpp \
  11. Modbus.cpp \
  12. Msgbox.cpp \
  13. Standard.cpp \
  14. TestService.cpp \
  15. main.cpp \
  16. pid.cpp \
  17. report.cpp \
  18. serialport.cpp \
  19. serialui.cpp \
  20. tank.cpp
  21. RESOURCES += qml.qrc
  22. RC_ICONS += $$PWD/valve.ico
  23. DEFINES += QT_MESSAGELOGCONTEXT
  24. # Additional import path used to resolve QML modules in Qt Creator's code model
  25. QML_IMPORT_PATH =
  26. # Additional import path used to resolve QML modules just for Qt Quick Designer
  27. QML_DESIGNER_IMPORT_PATH =
  28. # Default rules for deployment.
  29. qnx: target.path = /tmp/$${TARGET}/bin
  30. else: unix:!android: target.path = /opt/$${TARGET}/bin
  31. !isEmpty(target.path): INSTALLS += target
  32. HEADERS += \
  33. DLog.h \
  34. Modbus.h \
  35. Msgbox.h \
  36. Standard.h \
  37. TestService.h \
  38. pid.h \
  39. report.h \
  40. serialport.h \
  41. serialui.h \
  42. tank.h
  43. DISTFILES +=