obs-v4l2sink icon indicating copy to clipboard operation
obs-v4l2sink copied to clipboard

Cant install

Open fakename131 opened this issue 5 years ago • 6 comments

when i type cmake -DLIBOBS_INCLUDE_DIR="../../obs-studio/libobs" -DCMAKE_INSTALL_PREFIX=/usr .. it says -- Configuring incomplete, errors occurred!

fakename131 avatar May 12 '20 14:05 fakename131

-- Could NOT find Libobs (missing: LIBOBS_LIB) CMake Error at external/FindLibObs.cmake:106 (message): Could not find the libobs library Call Stack (most recent call first): CMakeLists.txt:5 (include)

DL1DLX avatar May 12 '20 18:05 DL1DLX

You need to install libobs-dev (that's the package name on Debian, adjust for your distribution accordingly).

mika avatar May 12 '20 20:05 mika

You need to install libobs-dev (that's the package name on Debian, adjust for your distribution accordingly).

Maybe this should be under a "requirements" section in the readme. Thank you for this info!

adremides avatar May 18 '20 01:05 adremides

I had the same problem and modified the CMakeLists.txt for a working solution: Replace Line 5: include(external/FindLibObs.cmake)

by: if (WIN32 OR APPLE) include(external/FindLibObs.cmake) endif()

ogmkp avatar May 20 '20 04:05 ogmkp

adremides solution worked for me. Thanks!

huertacjavier avatar Jun 08 '20 20:06 huertacjavier

If you are fedora user:

dnf install obs-studio-devel

I'm a fedora 31 user and this method worked for me.

Torkin1 avatar Jun 09 '20 21:06 Torkin1