Open fakename131 opened 4 years ago
-- 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)
You need to install libobs-dev
(that's the package name on Debian, adjust for your distribution accordingly).
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!
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()
adremides solution worked for me. Thanks!
If you are fedora user:
dnf install obs-studio-devel
I'm a fedora 31 user and this method worked for me.
when i type
cmake -DLIBOBS_INCLUDE_DIR="../../obs-studio/libobs" -DCMAKE_INSTALL_PREFIX=/usr ..
it says-- Configuring incomplete, errors occurred!