SBTdie-bonder-ui.pro 1.0 KB

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