1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-05-01 03:44:00 -04:00

Merge branch 'f4exb:master' into inmarsat

This commit is contained in:
srcejon 2026-01-07 13:02:21 +00:00 committed by GitHub
commit a1004cd935
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 1 deletions

View File

@ -100,6 +100,9 @@ target_link_libraries(${TARGET_NAME} PRIVATE
if(DEFINED FFMPEG_DEPENDS)
add_dependencies(${TARGET_NAME} ${FFMPEG_DEPENDS})
endif()
if(DEFINED OpenCV_DEPENDS)
add_dependencies(${TARGET_NAME} ${OpenCV_DEPENDS})
endif()
install(TARGETS ${TARGET_NAME} DESTINATION ${INSTALL_FOLDER})

View File

@ -31,7 +31,8 @@ extern "C"
}
#include <opencv2/opencv.hpp> // Add OpenCV for text overlay
#include <opencv2/imgproc.hpp> // Add OpenCV for text overlay
#include <opencv2/imgcodecs.hpp>
#include <QDateTime>