graber.pro 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. QT += quick
  2. CONFIG += c++11
  3. # The following define makes your compiler emit warnings if you use
  4. # any Qt feature that has been marked deprecated (the exact warnings
  5. # depend on your compiler). Refer to the documentation for the
  6. # deprecated API to know how to port your code away from it.
  7. DEFINES += QT_DEPRECATED_WARNINGS
  8. # You can also make your code fail to compile if it uses deprecated APIs.
  9. # In order to do so, uncomment the following line.
  10. # You can also select to disable deprecated APIs only up to a certain version of Qt.
  11. #DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
  12. INCLUDEPATH += C:\OpenCV\opencv\build\include
  13. LIBS += C:\OpenCV\OpenCV_bin\bin\libopencv_core430.dll
  14. LIBS += C:\OpenCV\OpenCV_bin\bin\libopencv_highgui430.dll
  15. LIBS += C:\OpenCV\OpenCV_bin\bin\libopencv_imgcodecs430.dll
  16. LIBS += C:\OpenCV\OpenCV_bin\bin\libopencv_imgproc430.dll
  17. LIBS += C:\OpenCV\OpenCV_bin\bin\libopencv_features2d430.dll
  18. LIBS += C:\OpenCV\OpenCV_bin\bin\libopencv_calib3d430.dll
  19. LIBS += C:\OpenCV\OpenCV_bin\bin\libopencv_video430.dll
  20. LIBS += C:\OpenCV\OpenCV_bin\bin\libopencv_videoio430.dll
  21. LIBS += C:\OpenCV\OpenCV_bin\bin\libopencv_stitching430.dll
  22. LIBS += C:\OpenCV\OpenCV_bin\bin\libopencv_photo430.dll
  23. SOURCES += \
  24. imagemanager.cpp \
  25. main.cpp \
  26. videomanger.cpp
  27. RESOURCES += qml.qrc
  28. # Default rules for deployment.
  29. qnx: target.path = /tmp/$${TARGET}/bin
  30. else: unix:!android: target.path = /opt/$${TARGET}/bin
  31. !isEmpty(target.path): INSTALLS += target
  32. HEADERS += \
  33. imagemanager.h \
  34. videomanger.h