project01.pro 819 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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. Demo001_1.cpp \
  9. Demo001_2.cpp \
  10. Demo001_3.cpp \
  11. main.cpp \
  12. MainWnd.cpp
  13. HEADERS += \
  14. Demo001_1.h \
  15. Demo001_2.h \
  16. Demo001_3.h \
  17. MainWnd.h
  18. FORMS += \
  19. Demo001_1.ui \
  20. Demo001_2.ui \
  21. Demo001_3.ui \
  22. MainWnd.ui
  23. # Default rules for deployment.
  24. qnx: target.path = /tmp/$${TARGET}/bin
  25. else: unix:!android: target.path = /opt/$${TARGET}/bin
  26. !isEmpty(target.path): INSTALLS += target
  27. DISTFILES +=
  28. RESOURCES += \
  29. res.qrc
  30. QMAKE_PROJECT_DEPTH = 0