JxcClient.pro 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  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. msvc{
  15. QMAKE_CFLAGS += -source-charset:utf-8
  16. QMAKE_CXXFLAGS += -source-charset:utf-8
  17. }
  18. SOURCES += \
  19. configinfo.cpp \
  20. globalinfo.cpp \
  21. handle/autosyncpackinfo.cpp \
  22. handle/printer/boxtemlateone.cpp \
  23. handle/printer/code39.cpp \
  24. handle/httprequest.cpp \
  25. handle/printerthreadhandle.cpp \
  26. handle/seriport/logserialport.cpp \
  27. handle/packinfomanger.cpp \
  28. handle/packinfoseed2server.cpp \
  29. handle/printer/baseboxprinter.cpp \
  30. handle/printer/printermanger.cpp \
  31. handle/projectinfomanger.cpp \
  32. handle/remotepackconfig.cpp \
  33. handle/seriport/rtuport.cpp \
  34. handle/seriport/assictscalet2000.cpp \
  35. handle/seriport/serialbasehandle.cpp \
  36. handle/serialthreadhandle.cpp \
  37. struct_/modelinfo.cpp \
  38. struct_/packinfo.cpp \
  39. struct_/projectinfo.cpp \
  40. widget/addnewspecsform.cpp \
  41. widget/displaysettingsform.cpp \
  42. widget/editboxinfodialog.cpp \
  43. widget/fixedweightpackform.cpp \
  44. widget/loginform.cpp \
  45. main.cpp \
  46. mainwindow.cpp \
  47. widget/modelselectform.cpp \
  48. widget/packdetailform.cpp \
  49. widget/selectvalueform.cpp \
  50. widget/settingsform.cpp \
  51. widget/shortcutconfig.cpp \
  52. widget/showmadanlabelform.cpp \
  53. widget/showxiangdanlabelform.cpp \
  54. widget/statisticsform.cpp \
  55. widget/uncertainweightpackform.cpp
  56. HEADERS += \
  57. configinfo.h \
  58. globalinfo.h \
  59. handle/autosyncpackinfo.h \
  60. handle/printer/boxtemlateone.h \
  61. handle/printer/code39.h \
  62. handle/httprequest.h \
  63. handle/packinfomanger.h \
  64. handle/packinfoseed2server.h \
  65. handle/printer/baseboxprinter.h \
  66. handle/printer/printermanger.h \
  67. handle/printerthreadhandle.h \
  68. handle/projectinfomanger.h \
  69. handle/seriport/logserialport.h \
  70. handle/remotepackconfig.h \
  71. handle/seriport/rtuport.h \
  72. handle/seriport/assictscalet2000.h \
  73. handle/seriport/serialbasehandle.h \
  74. handle/serialthreadhandle.h \
  75. struct_/modelinfo.h \
  76. struct_/packinfo.h \
  77. struct_/projectinfo.h \
  78. widget/addnewspecsform.h \
  79. widget/displaysettingsform.h \
  80. widget/editboxinfodialog.h \
  81. widget/fixedweightpackform.h \
  82. widget/loginform.h \
  83. mainwindow.h \
  84. widget/modelselectform.h \
  85. widget/packdetailform.h \
  86. widget/selectvalueform.h \
  87. widget/settingsform.h \
  88. widget/shortcutconfig.h \
  89. widget/showmadanlabelform.h \
  90. widget/showxiangdanlabelform.h \
  91. widget/statisticsform.h \
  92. widget/uncertainweightpackform.h
  93. FORMS += \
  94. widget/addnewspecsform.ui \
  95. widget/displaysettingsform.ui \
  96. widget/editboxinfodialog.ui \
  97. widget/fixedweightpackform.ui \
  98. widget/loginform.ui \
  99. mainwindow.ui \
  100. widget/modelselectform.ui \
  101. widget/packdetailform.ui \
  102. widget/selectvalueform.ui \
  103. widget/settingsform.ui \
  104. widget/shortcutconfig.ui \
  105. widget/showmadanlabelform.ui \
  106. widget/showxiangdanlabelform.ui \
  107. widget/statisticsform.ui \
  108. widget/uncertainweightpackform.ui
  109. # Default rules for deployment.
  110. qnx: target.path = /tmp/$${TARGET}/bin
  111. else: unix:!android: target.path = /opt/$${TARGET}/bin
  112. !isEmpty(target.path): INSTALLS += target
  113. RESOURCES += \
  114. images.qrc