1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-09-27 15:26:33 -04:00

ATV modulator: fixed undefined symbol cv::VideoCapture

This commit is contained in:
f4exb 2019-05-31 11:07:36 +02:00
parent 034c299e4a
commit 9284b47880
2 changed files with 2 additions and 1 deletions

View File

@ -50,7 +50,7 @@ target_link_libraries(${TARGET_NAME}
sdrbase
${TARGET_LIB_GUI}
swagger
${OpenCV_LIBS}
"${OpenCV_LIBS};opencv_videoio"
)
install(TARGETS ${TARGET_NAME} DESTINATION ${INSTALL_FOLDER})

View File

@ -26,6 +26,7 @@
#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/videoio.hpp>
#include <stdint.h>