QframeTest01.pro 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. QT += core gui sql network
  2. greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
  3. CONFIG += c++17
  4. # You can make your code fail to compile if it uses deprecated APIs.
  5. # In order to do so, uncomment the following line.
  6. #DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
  7. SOURCES += \
  8. PageWidget.cpp \
  9. addressfactory.cpp \
  10. addresspage.cpp \
  11. blastplanpage.cpp \
  12. blastplanpfactory.cpp \
  13. blastprojectfactory.cpp \
  14. blastprojectpage.cpp \
  15. book.cpp \
  16. buttondelegate.cpp \
  17. databasemanager.cpp \
  18. detInfo/detinfofactory.cpp \
  19. detInfo/detinfopage.cpp \
  20. detdialog.cpp \
  21. dialog.cpp \
  22. equipment/equipmentfactory.cpp \
  23. equipment/equipmentpage.cpp \
  24. global.cpp \
  25. hplan.cpp \
  26. hplandao.cpp \
  27. hproject.cpp \
  28. hprojectdao.cpp \
  29. httpclient.cpp \
  30. jobs.cpp \
  31. loginwindow.cpp \
  32. main.cpp \
  33. mainwindow.cpp \
  34. mqtt/mqttclient.cpp \
  35. newpagefactory.cpp \
  36. page.cpp \
  37. pagetest.cpp \
  38. pagetestfactory.cpp \
  39. plandialog.cpp \
  40. projectdialog.cpp \
  41. sysapi.cpp \
  42. sysapidao.cpp \
  43. testdialog.cpp
  44. HEADERS += \
  45. PageWidget.h \
  46. addressfactory.h \
  47. addresspage.h \
  48. blastplanpage.h \
  49. blastplanpfactory.h \
  50. blastprojectfactory.h \
  51. blastprojectpage.h \
  52. book.h \
  53. buttondelegate.h \
  54. databasemanager.h \
  55. detInfo/detinfofactory.h \
  56. detInfo/detinfopage.h \
  57. detdialog.h \
  58. dialog.h \
  59. equipment/equipmentfactory.h \
  60. equipment/equipmentpage.h \
  61. global.h \
  62. hplan.h \
  63. hplandao.h \
  64. hproject.h \
  65. hprojectdao.h \
  66. httpclient.h \
  67. jobs.h \
  68. loginwindow.h \
  69. mainwindow.h \
  70. PageFactory.h\
  71. mqtt/mqttclient.h \
  72. newpagefactory.h \
  73. page.h \
  74. pagetest.h \
  75. pagetestfactory.h \
  76. plandialog.h \
  77. projectdialog.h \
  78. regex.h \
  79. sysapi.h \
  80. sysapidao.h \
  81. testdialog.h
  82. FORMS += \
  83. PageWidget.ui \
  84. addresspage.ui \
  85. blastplanpage.ui \
  86. blastprojectpage.ui \
  87. detInfo/detinfopage.ui \
  88. detdialog.ui \
  89. dialog.ui \
  90. equipment/equipmentpage.ui \
  91. loginwindow.ui \
  92. mainwindow.ui \
  93. page.ui \
  94. pagetest.ui \
  95. plandialog.ui \
  96. projectdialog.ui \
  97. testdialog.ui
  98. # Default rules for deployment.
  99. qnx: target.path = /tmp/$${TARGET}/bin
  100. else: unix:!android: target.path = /opt/$${TARGET}/bin
  101. !isEmpty(target.path): INSTALLS += target
  102. QMAKE_PROJECT_DEPTH = 0
  103. RESOURCES += \
  104. media.qrc