JxcClient.pro 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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. include($$PWD/pqQtlib/pqQtlib.pri)
  14. SOURCES += \
  15. configinfo.cpp \
  16. globalinfo.cpp \
  17. handle/printer/boxtemlateone.cpp \
  18. handle/printer/code39.cpp \
  19. handle/danjumuban.cpp \
  20. handle/httprequest.cpp \
  21. handle/printerthreadhandle.cpp \
  22. handle/seriport/logserialport.cpp \
  23. handle/packinfomanger.cpp \
  24. handle/packinfoseed2server.cpp \
  25. handle/printer/baseboxprinter.cpp \
  26. handle/printer/printermanger.cpp \
  27. handle/projectinfomanger.cpp \
  28. handle/remotepackconfig.cpp \
  29. handle/seriport/rtuport.cpp \
  30. handle/seriport/assictscalet2000.cpp \
  31. handle/seriport/serialbasehandle.cpp \
  32. handle/serialthreadhandle.cpp \
  33. struct_/packinfo.cpp \
  34. struct_/projectinfo.cpp \
  35. widget/addnewspecsform.cpp \
  36. widget/fixedweightpackform.cpp \
  37. widget/loginform.cpp \
  38. main.cpp \
  39. mainwindow.cpp \
  40. widget/packdetailform.cpp \
  41. widget/selectvalueform.cpp \
  42. widget/settingsform.cpp \
  43. widget/uncertainweightpackform.cpp
  44. HEADERS += \
  45. configinfo.h \
  46. globalinfo.h \
  47. handle/printer/boxtemlateone.h \
  48. handle/printer/code39.h \
  49. handle/danjumuban.h \
  50. handle/httprequest.h \
  51. handle/packinfomanger.h \
  52. handle/packinfoseed2server.h \
  53. handle/printer/baseboxprinter.h \
  54. handle/printer/printermanger.h \
  55. handle/printerthreadhandle.h \
  56. handle/projectinfomanger.h \
  57. handle/seriport/logserialport.h \
  58. handle/remotepackconfig.h \
  59. handle/seriport/rtuport.h \
  60. handle/seriport/assictscalet2000.h \
  61. handle/seriport/serialbasehandle.h \
  62. handle/serialthreadhandle.h \
  63. struct_/packinfo.h \
  64. struct_/projectinfo.h \
  65. widget/addnewspecsform.h \
  66. widget/fixedweightpackform.h \
  67. widget/loginform.h \
  68. mainwindow.h \
  69. widget/packdetailform.h \
  70. widget/selectvalueform.h \
  71. widget/settingsform.h \
  72. widget/uncertainweightpackform.h
  73. FORMS += \
  74. widget/addnewspecsform.ui \
  75. widget/fixedweightpackform.ui \
  76. widget/loginform.ui \
  77. mainwindow.ui \
  78. widget/packdetailform.ui \
  79. widget/selectvalueform.ui \
  80. widget/settingsform.ui \
  81. widget/uncertainweightpackform.ui
  82. # Default rules for deployment.
  83. qnx: target.path = /tmp/$${TARGET}/bin
  84. else: unix:!android: target.path = /opt/$${TARGET}/bin
  85. !isEmpty(target.path): INSTALLS += target
  86. RESOURCES += \
  87. images.qrc
  88. include($$PWD/pqQtlib/pqQtlib.pri)