1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-11 02:08:46 -04:00

ATV modulator: corrected OpenCV dependencies and removed ugly hack

This commit is contained in:
f4exb
2019-06-01 01:31:55 +02:00
parent 8ae26ada10
commit cde8b87985
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -305,7 +305,7 @@ find_package(PkgConfig REQUIRED)
find_package(Boost REQUIRED)
find_package(FFTW3F REQUIRED)
find_package(LibUSB REQUIRED) # used by so many packages
find_package(OpenCV REQUIRED core highgui imgproc) # channeltx/modatv
find_package(OpenCV REQUIRED core highgui imgproc imgcodecs videoio) # channeltx/modatv
# unfortunately OpenCV library from windows doesn't set the cache option
if(WIN32)
+1 -1
View File
@@ -50,7 +50,7 @@ target_link_libraries(${TARGET_NAME}
sdrbase
${TARGET_LIB_GUI}
swagger
"${OpenCV_LIBS};opencv_videoio"
"${OpenCV_LIBS}"
)
install(TARGETS ${TARGET_NAME} DESTINATION ${INSTALL_FOLDER})