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