ValveTest.pro 1.4 KB

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