SBTdie-bonder-ui.pro 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. QT += core gui
  2. greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
  3. CONFIG += c++17
  4. # LIBS += -L"D:\build-qwt-Desktop_Qt_5_12_8_MSVC2017_64bit-Debug\lib" -lqwtd
  5. # LIBS += -L"D:\build-qwt-Desktop_Qt_5_12_8_MSVC2017_64bit-Debug\lib" -lqwt
  6. # INCLUDEPATH += D:\app\Qt\5.15.2\msvc2019_64\include\qwt
  7. # You can make your code fail to compile if it uses deprecated APIs.
  8. # In order to do so, uncomment the following line.
  9. #DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
  10. SOURCES += \
  11. Group.cpp \
  12. ImageWidget.cpp \
  13. ImageWidget_nodrag.cpp \
  14. Login.cpp \
  15. OriginalWnd/ChartsAndCamerasWnd.cpp \
  16. OriginalWnd/MainAndSecondaryCamerasWnd.cpp \
  17. OriginalWnd/OriginalWnd.cpp \
  18. OriginalWnd/SingleCameraOperationWnd.cpp \
  19. OriginalWnd/treeviewmanager.cpp \
  20. main.cpp \
  21. MainWnd.cpp \
  22. HEADERS += \
  23. Group.h \
  24. ImageWidget.h \
  25. ImageWidget_nodrag.h \
  26. Login.h \
  27. MainWnd.h \
  28. OriginalWnd/ChartsAndCamerasWnd.h \
  29. OriginalWnd/MainAndSecondaryCamerasWnd.h \
  30. OriginalWnd/OriginalWnd.h \
  31. OriginalWnd/SingleCameraOperationWnd.h \
  32. OriginalWnd/treeviewmanager.h \
  33. FORMS += \
  34. Group.ui \
  35. ImageWidget.ui \
  36. ImageWidget_nodrag.ui \
  37. Login.ui \
  38. MainWnd.ui \
  39. OriginalWnd/ChartsAndCamerasWnd.ui \
  40. OriginalWnd/MainAndSecondaryCamerasWnd.ui \
  41. OriginalWnd/OriginalWnd.ui \
  42. OriginalWnd/SingleCameraOperationWnd.ui
  43. # Default rules for deployment.
  44. qnx: target.path = /tmp/$${TARGET}/bin
  45. else: unix:!android: target.path = /opt/$${TARGET}/bin
  46. !isEmpty(target.path): INSTALLS += target
  47. DISTFILES += \
  48. images/drop.png
  49. RESOURCES += \
  50. res.qrc
  51. QMAKE_PROJECT_DEPTH = 0