-
-
Notifications
You must be signed in to change notification settings - Fork 707
Building obs websocket
This guide only applies to the release/5.0.0
branch. The master
branch is meant to be built in-tree with OBS Studio master
.
You'll need Qt 5.15.2 on Windows/Mac or Qt 5.12.8 on Linux, CMake and a working OBS Studio development environment installed on your computer.
In cmake-gui, you'll have to set the following variables :
- QTDIR (path) : location of the Qt environment suited for your compiler and architecture
- LIBOBS_INCLUDE_DIR (path) : location of the libobs subfolder in the source code of OBS Studio
- LIBOBS_LIB (filepath) : location of the obs.lib file
- OBS_FRONTEND_LIB (filepath) : location of the obs-frontend-api.lib file
On Debian/Ubuntu :
sudo apt-get install libboost-all-dev qt5-image-formats-plugins
git clone --recursive https://github.com/obsproject/obs-websocket.git
cd obs-websocket
mkdir build && cd build
cmake -DLIBOBS_INCLUDE_DIR="<path to the libobs sub-folder in obs-studio's source code>" -DCMAKE_INSTALL_PREFIX=/usr -DUSE_UBUNTU_FIX=true ..
make -j4
sudo make install
On other linux OS's, use this cmake command instead:
cmake -DLIBOBS_INCLUDE_DIR="<path to the libobs sub-folder in obs-studio's source code>" -DCMAKE_INSTALL_PREFIX=/usr ..
As a prerequisite, you will need Xcode for your current OSX version, the Xcode command line tools, and Homebrew. Homebrew's setup will guide you in getting your system set up, you should be good to go once Homebrew is successfully up and running.
Use of the macOS CI scripts is recommended. Please note that these
scripts install new software and can change several settings on your system. An
existing obs-studio development environment is not required, as
install-build-obs-macos.sh
will install it for you. If you already have a
working obs-studio development environment and have built obs-studio, you can
skip that script.
Of course, you're encouraged to dig through the contents of these scripts to look for issues or specificities.
git clone --recursive https://github.com/obsproject/obs-websocket.git
cd obs-websocket
./CI/install-dependencies-macos.sh
./CI/install-build-obs-macos.sh
./CI/build-macos.sh
./CI/package-macos.sh
This will result in a ready-to-use obs-websocket.pkg
installer in the release
subfolder.