project01.pro 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. images/drop.png
  35. RESOURCES += \
  36. res.qrc
  37. QMAKE_PROJECT_DEPTH = 0