project01.pro 1.0 KB

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