You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 15, 2021. It is now read-only.
There is not way to set the destination path to /usr/lib/x86_64-linux-gnu/obs-plugins/ which is used under Ubuntu.
I propose to use LIBRARY DESTINATION ${CMAKE_INSTALL_PREFIX}/obs-plugins) instead.
So INSTALL_PREFIX can be set to either /usr/lib or /usr/lib/x86_64-linux-gnu accordingly.
The text was updated successfully, but these errors were encountered:
A quick, dirty and and not in any way recommended workaround to make it to your next meeting: sudo mv /usr/lib/obs-plugins/v4l2sink.so /usr/lib/x86_64-linux-gnu/obs-plugins/
(Thank you @npalix, i missed the fact the installer installs to the wrong directory, you just saved me!)
Edit: I finally moved the plugin to ~/.config/obs-studio/plugins/, which seems to be the appropriate place.
obs-v4l2sink/CMakeLists.txt
Line 47 in 1ec3c8a
There is not way to set the destination path to /usr/lib/x86_64-linux-gnu/obs-plugins/ which is used under Ubuntu.
I propose to use
LIBRARY DESTINATION ${CMAKE_INSTALL_PREFIX}/obs-plugins)
instead.So INSTALL_PREFIX can be set to either
/usr/lib
or/usr/lib/x86_64-linux-gnu
accordingly.The text was updated successfully, but these errors were encountered: