SBTdie-bonder-ui.pro 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. QT += core gui
  2. QT += charts
  3. greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
  4. CONFIG += c++17
  5. # LIBS += -L"D:\build-qwt-Desktop_Qt_5_12_8_MSVC2017_64bit-Debug\lib" -lqwtd
  6. # LIBS += -L"D:\build-qwt-Desktop_Qt_5_12_8_MSVC2017_64bit-Debug\lib" -lqwt
  7. # INCLUDEPATH += D:\app\Qt\5.15.2\msvc2019_64\include\qwt
  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 += \
  12. Group.cpp \
  13. ImageWidget.cpp \
  14. ImageWidget_nodrag.cpp \
  15. Login.cpp \
  16. OriginalWnd/ChartsAndCamerasWnd.cpp \
  17. OriginalWnd/MainAndSecondaryCamerasWnd.cpp \
  18. OriginalWnd/OriginalWnd.cpp \
  19. OriginalWnd/SingleCameraOperationWnd.cpp \
  20. OriginalWnd/chartline.cpp \
  21. OriginalWnd/treeviewmanager.cpp \
  22. main.cpp \
  23. MainWnd.cpp \
  24. HEADERS += \
  25. Group.h \
  26. ImageWidget.h \
  27. ImageWidget_nodrag.h \
  28. Login.h \
  29. MainWnd.h \
  30. OriginalWnd/ChartsAndCamerasWnd.h \
  31. OriginalWnd/MainAndSecondaryCamerasWnd.h \
  32. OriginalWnd/OriginalWnd.h \
  33. OriginalWnd/SingleCameraOperationWnd.h \
  34. OriginalWnd/chartline.h \
  35. OriginalWnd/treeviewmanager.h \
  36. FORMS += \
  37. Group.ui \
  38. ImageWidget.ui \
  39. ImageWidget_nodrag.ui \
  40. Login.ui \
  41. MainWnd.ui \
  42. OriginalWnd/ChartsAndCamerasWnd.ui \
  43. OriginalWnd/MainAndSecondaryCamerasWnd.ui \
  44. OriginalWnd/OriginalWnd.ui \
  45. OriginalWnd/SingleCameraOperationWnd.ui
  46. # Default rules for deployment.
  47. qnx: target.path = /tmp/$${TARGET}/bin
  48. else: unix:!android: target.path = /opt/$${TARGET}/bin
  49. !isEmpty(target.path): INSTALLS += target
  50. DISTFILES += \
  51. images/drop.png
  52. RESOURCES += \
  53. res.qrc
  54. QMAKE_PROJECT_DEPTH = 0