project01.pro 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. QT += core gui
  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. Login.cpp \
  9. OriginalWnd/Demo001_1.cpp \
  10. OriginalWnd/Demo001_2.cpp \
  11. OriginalWnd/Demo001_3.cpp \
  12. OriginalWnd/OriginalWnd.cpp \
  13. form/attribute_wgt.cpp \
  14. form/basedisplay_wgt.cpp \
  15. form/form.cpp \
  16. form/infotree_wgt.cpp \
  17. main.cpp \
  18. MainWnd.cpp
  19. HEADERS += \
  20. Login.h \
  21. MainWnd.h \
  22. OriginalWnd/Demo001_1.h \
  23. OriginalWnd/Demo001_2.h \
  24. OriginalWnd/Demo001_3.h \
  25. OriginalWnd/OriginalWnd.h \
  26. form/attribute_wgt.h \
  27. form/basedisplay_wgt.h \
  28. form/form.h \
  29. form/infotree_wgt.h
  30. FORMS += \
  31. Login.ui \
  32. MainWnd.ui \
  33. OriginalWnd/Demo001_1.ui \
  34. OriginalWnd/Demo001_2.ui \
  35. OriginalWnd/Demo001_3.ui \
  36. OriginalWnd/OriginalWnd.ui \
  37. form/attribute_wgt.ui \
  38. form/basedisplay_wgt.ui \
  39. form/form.ui \
  40. form/infotree_wgt.ui
  41. # Default rules for deployment.
  42. qnx: target.path = /tmp/$${TARGET}/bin
  43. else: unix:!android: target.path = /opt/$${TARGET}/bin
  44. !isEmpty(target.path): INSTALLS += target
  45. DISTFILES +=
  46. RESOURCES += \
  47. res.qrc
  48. QMAKE_PROJECT_DEPTH = 0