SBTdie-bonder-ui.pro 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. Src/RewriteControl/MsgDlg/CustomMessageDlg.cpp
  15. HEADERS += $$files(*.h, $$PWD) \
  16. Src/RewriteControl/MsgDlg/CustomMessageDlg.h
  17. FORMS += $$files(*.ui, $$PWD) \
  18. Src/RewriteControl/MsgDlg/CustomMessageDlg.ui
  19. # Default rules for deployment.
  20. qnx: target.path = /tmp/$${TARGET}/bin
  21. else: unix:!android: target.path = /opt/$${TARGET}/bin
  22. !isEmpty(target.path): INSTALLS += target
  23. DISTFILES += \
  24. configurations.db \
  25. dark.qss
  26. RESOURCES += \
  27. res.qrc
  28. QMAKE_PROJECT_DEPTH = 0
  29. win32-msvc*: {
  30. QMAKE_CFLAGS *= /utf-8
  31. QMAKE_CXXFLAGS *= /utf-8
  32. }