SBTdie-bonder-ui.pro 1.3 KB

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