JxcClient.pro 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. QT += core gui network serialport sql printsupport
  2. greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
  3. CONFIG += c++11
  4. # The following define makes your compiler emit warnings if you use
  5. # any Qt feature that has been marked deprecated (the exact warnings
  6. # depend on your compiler). Please consult the documentation of the
  7. # deprecated API in order to know how to port your code away from it.
  8. DEFINES += QT_DEPRECATED_WARNINGS
  9. # You can also make your code fail to compile if it uses deprecated APIs.
  10. # In order to do so, uncomment the following line.
  11. # You can also select to disable deprecated APIs only up to a certain version of Qt.
  12. #DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
  13. SOURCES += \
  14. configinfo.cpp \
  15. globalinfo.cpp \
  16. handle/autopackutils.cpp \
  17. handle/code39.cpp \
  18. handle/danjumuban.cpp \
  19. handle/database.cpp \
  20. handle/httprequest.cpp \
  21. handle//seriport/logserialport.cpp \
  22. handle/remotepackconfig.cpp \
  23. handle/rtuport.cpp \
  24. handle/seriport/assictscalet2000.cpp \
  25. handle/seriport/serialbasehandle.cpp \
  26. handle/utils/cachefile.cpp \
  27. handle/utils/rtuhelper.cpp \
  28. handle/utils/utilsfunc.cpp \
  29. packinfo.cpp \
  30. widget/autopackform.cpp \
  31. widget/fixedweightpackform.cpp \
  32. widget/loginform.cpp \
  33. main.cpp \
  34. mainwindow.cpp \
  35. widget/packdetailform.cpp \
  36. widget/selectvalueform.cpp \
  37. widget/settingsform.cpp \
  38. widget/uncertainweightpackform.cpp
  39. HEADERS += \
  40. configinfo.h \
  41. globalinfo.h \
  42. handle/autopackutils.h \
  43. handle/code39.h \
  44. handle/danjumuban.h \
  45. handle/database.h \
  46. handle/httprequest.h \
  47. handle/seriport/logserialport.h \
  48. handle/remotepackconfig.h \
  49. handle/rtuport.h \
  50. handle/seriport/assictscalet2000.h \
  51. handle/seriport/serialbasehandle.h \
  52. handle/utils/cachefile.h \
  53. handle/utils/rtuhelper.h \
  54. handle/utils/utilsfunc.h \
  55. packinfo.h \
  56. widget/autopackform.h \
  57. widget/fixedweightpackform.h \
  58. widget/loginform.h \
  59. mainwindow.h \
  60. widget/packdetailform.h \
  61. widget/selectvalueform.h \
  62. widget/settingsform.h \
  63. widget/uncertainweightpackform.h
  64. FORMS += \
  65. widget/autopackform.ui \
  66. widget/fixedweightpackform.ui \
  67. widget/loginform.ui \
  68. mainwindow.ui \
  69. widget/packdetailform.ui \
  70. widget/selectvalueform.ui \
  71. widget/settingsform.ui \
  72. widget/uncertainweightpackform.ui
  73. # Default rules for deployment.
  74. qnx: target.path = /tmp/$${TARGET}/bin
  75. else: unix:!android: target.path = /opt/$${TARGET}/bin
  76. !isEmpty(target.path): INSTALLS += target