mpSorter.pro 810 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. QT += core sql gui widgets
  2. greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
  3. CONFIG += c++11
  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. View.cpp \
  9. database.cpp \
  10. howtouse.cpp \
  11. main.cpp \
  12. mainwindow.cpp \
  13. taskcreator.cpp
  14. HEADERS += \
  15. DataHelper.h \
  16. View.h \
  17. database.h \
  18. howtouse.h \
  19. mainwindow.h \
  20. taskcreator.h
  21. FORMS += \
  22. howtouse.ui \
  23. taskcreator.ui
  24. # Default rules for deployment.
  25. qnx: target.path = /tmp/$${TARGET}/bin
  26. else: unix:!android: target.path = /opt/$${TARGET}/bin
  27. !isEmpty(target.path): INSTALLS += target
  28. RESOURCES +=
  29. DISTFILES +=