SBTdie-bonder-ui.pro 835 B

12345678910111213141516171819202122232425262728293031323334
  1. # SBT专用请不要随意修改
  2. # 修改请找 :JonYang
  3. QT += core gui sql charts
  4. greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
  5. CONFIG += c++17
  6. # You can make your code fail to compile if it uses deprecated APIs.
  7. # In order to do so, uncomment the following line.
  8. #DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
  9. SOURCES += $$files(*.cpp, $$PWD)
  10. HEADERS += $$files(*.h, $$PWD)
  11. FORMS += $$files(*.ui, $$PWD)
  12. # Default rules for deployment.
  13. qnx: target.path = /tmp/$${TARGET}/bin
  14. else: unix:!android: target.path = /opt/$${TARGET}/bin
  15. !isEmpty(target.path): INSTALLS += target
  16. DISTFILES += \
  17. configurations.db \
  18. dark.qss
  19. RESOURCES += \
  20. res.qrc
  21. QMAKE_PROJECT_DEPTH = 0
  22. win32-msvc*: {
  23. QMAKE_CFLAGS *= /utf-8
  24. QMAKE_CXXFLAGS *= /utf-8
  25. }