JxcClient.pro 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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/logserialport.cpp \
  22. handle/remotepackconfig.cpp \
  23. handle/rtuport.cpp \
  24. handle/utils/rtuhelper.cpp \
  25. handle/utils/utilsfunc.cpp \
  26. packinfo.cpp \
  27. widget/autopackform.cpp \
  28. widget/loginform.cpp \
  29. main.cpp \
  30. mainwindow.cpp \
  31. widget/packdetailform.cpp \
  32. widget/selectvalueform.cpp \
  33. widget/settingsform.cpp
  34. HEADERS += \
  35. configinfo.h \
  36. globalinfo.h \
  37. handle/autopackutils.h \
  38. handle/code39.h \
  39. handle/danjumuban.h \
  40. handle/database.h \
  41. handle/httprequest.h \
  42. handle/logserialport.h \
  43. handle/remotepackconfig.h \
  44. handle/rtuport.h \
  45. handle/utils/rtuhelper.h \
  46. handle/utils/utilsfunc.h \
  47. packinfo.h \
  48. widget/autopackform.h \
  49. widget/loginform.h \
  50. mainwindow.h \
  51. widget/packdetailform.h \
  52. widget/selectvalueform.h \
  53. widget/settingsform.h
  54. FORMS += \
  55. widget/autopackform.ui \
  56. widget/loginform.ui \
  57. mainwindow.ui \
  58. widget/packdetailform.ui \
  59. widget/selectvalueform.ui \
  60. widget/settingsform.ui
  61. # Default rules for deployment.
  62. qnx: target.path = /tmp/$${TARGET}/bin
  63. else: unix:!android: target.path = /opt/$${TARGET}/bin
  64. !isEmpty(target.path): INSTALLS += target