JxcClient.pro 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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/autosyncpackinfo.cpp \
  18. handle/printer/boxtemlateone.cpp \
  19. handle/printer/code39.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/dateselectdialog.cpp \
  37. widget/displaysettingsform.cpp \
  38. widget/editboxinfodialog.cpp \
  39. widget/fixedweightpackform.cpp \
  40. widget/loginform.cpp \
  41. main.cpp \
  42. mainwindow.cpp \
  43. widget/packdetailform.cpp \
  44. widget/selectvalueform.cpp \
  45. widget/settingsform.cpp \
  46. widget/statisticsform.cpp \
  47. widget/uncertainweightpackform.cpp
  48. HEADERS += \
  49. configinfo.h \
  50. globalinfo.h \
  51. handle/autosyncpackinfo.h \
  52. handle/printer/boxtemlateone.h \
  53. handle/printer/code39.h \
  54. handle/httprequest.h \
  55. handle/packinfomanger.h \
  56. handle/packinfoseed2server.h \
  57. handle/printer/baseboxprinter.h \
  58. handle/printer/printermanger.h \
  59. handle/printerthreadhandle.h \
  60. handle/projectinfomanger.h \
  61. handle/seriport/logserialport.h \
  62. handle/remotepackconfig.h \
  63. handle/seriport/rtuport.h \
  64. handle/seriport/assictscalet2000.h \
  65. handle/seriport/serialbasehandle.h \
  66. handle/serialthreadhandle.h \
  67. struct_/packinfo.h \
  68. struct_/projectinfo.h \
  69. widget/addnewspecsform.h \
  70. widget/dateselectdialog.h \
  71. widget/displaysettingsform.h \
  72. widget/editboxinfodialog.h \
  73. widget/fixedweightpackform.h \
  74. widget/loginform.h \
  75. mainwindow.h \
  76. widget/packdetailform.h \
  77. widget/selectvalueform.h \
  78. widget/settingsform.h \
  79. widget/statisticsform.h \
  80. widget/uncertainweightpackform.h
  81. FORMS += \
  82. widget/addnewspecsform.ui \
  83. widget/dateselectdialog.ui \
  84. widget/displaysettingsform.ui \
  85. widget/editboxinfodialog.ui \
  86. widget/fixedweightpackform.ui \
  87. widget/loginform.ui \
  88. mainwindow.ui \
  89. widget/packdetailform.ui \
  90. widget/selectvalueform.ui \
  91. widget/settingsform.ui \
  92. widget/statisticsform.ui \
  93. widget/uncertainweightpackform.ui
  94. # Default rules for deployment.
  95. qnx: target.path = /tmp/$${TARGET}/bin
  96. else: unix:!android: target.path = /opt/$${TARGET}/bin
  97. !isEmpty(target.path): INSTALLS += target
  98. RESOURCES += \
  99. images.qrc