ValveTest.pro 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. PressureSensor.cpp \
  14. Standard.cpp \
  15. TestService.cpp \
  16. ballvalve.cpp \
  17. main.cpp \
  18. pid.cpp \
  19. report.cpp \
  20. serialport.cpp \
  21. serialui.cpp \
  22. tank.cpp \
  23. valve.cpp
  24. RESOURCES += qml.qrc
  25. RC_ICONS += $$PWD/valve.ico
  26. DEFINES += QT_MESSAGELOGCONTEXT
  27. # Additional import path used to resolve QML modules in Qt Creator's code model
  28. QML_IMPORT_PATH =
  29. # Additional import path used to resolve QML modules just for Qt Quick Designer
  30. QML_DESIGNER_IMPORT_PATH =
  31. # Default rules for deployment.
  32. qnx: target.path = /tmp/$${TARGET}/bin
  33. else: unix:!android: target.path = /opt/$${TARGET}/bin
  34. !isEmpty(target.path): INSTALLS += target
  35. HEADERS += \
  36. DLog.h \
  37. Modbus.h \
  38. Msgbox.h \
  39. PressureSensor.h \
  40. Standard.h \
  41. TestService.h \
  42. ballvalve.h \
  43. pid.h \
  44. report.h \
  45. serialport.h \
  46. serialui.h \
  47. tank.h \
  48. valve.h
  49. DISTFILES +=