integrationPlatformProject.pro 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. QT += core gui
  2. greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
  3. TARGET = integrationPlatformProject
  4. TEMPLATE = app
  5. # The following define makes your compiler emit warnings if you use
  6. # any feature of Qt which as been marked as deprecated (the exact warnings
  7. # depend on your compiler). Please consult the documentation of the
  8. # deprecated API in order to know how to port your code away from it.
  9. DEFINES += QT_DEPRECATED_WARNINGS
  10. # You can also make your code fail to compile if you use deprecated APIs.
  11. # In order to do so, uncomment the following line.
  12. # You can also select to disable deprecated APIs only up to a certain version of Qt.
  13. #DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
  14. SOURCES += \
  15. main.cpp \
  16. mainwindow.cpp \
  17. launchpage.cpp \
  18. projectmanager.cpp \
  19. log.cpp \
  20. licensedialog.cpp \
  21. modelpage.cpp
  22. HEADERS += \
  23. mainwindow.h \
  24. launchpage.h \
  25. projectmanager.h \
  26. log.h \
  27. licensedialog.h \
  28. modelpage.h
  29. include($$PWD/src/SARibbonBar/SARibbonBar.pri)
  30. FORMS += \
  31. launchpage.ui
  32. RESOURCES += \
  33. images.qrc
  34. DEFINES += QT_MESSAGELOGCONTEXT
  35. CONFIG += c++14