SBTdie-bonder-ui.pro 1.5 KB

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