Qt 6.11 is out! See what's new in the release
blog
VideoStreaming with qt_vlc on version qt5
-
Hi gusy,
I practically cloned qt_vlc to local directory, and built. Additionally, I would like to link those libraries with my widget project. However, even if i provide correct path and link libraries with project, it provides an error:
cmakelists.txt:
find_library(VLC_QT_LIBRARY
NAMES libVLCQtCore.so
HINTS /usr/local/lib/
)target_link_libraries(streamingDoberBot PRIVATE Qt${QT_VERSION_MAJOR}::Widgets Qt${QT_VERSION_MAJOR}::${VLC_QT_LIBRARY})
ERROR IS : links to libVLCQtCore.so library, but target was not found
Do you have any idea of this?