JxcClient.pro 2.7 KB

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