obs-websocket/CI/install-dependencies-osx.sh
2017-04-05 00:36:07 +02:00

25 lines
369 B
Bash
Executable File

#!/bin/sh
set -ex
brew update
# OBS Studio deps
brew install ffmpeg
brew install libav
# qtwebsockets deps
brew install qt5
# obs-websocket deps
# Build obs-studio
cd ..
git clone --recursive https://github.com/jp9000/obs-studio
cd obs-studio
mkdir build && cd build
cmake .. \
-DCMAKE_PREFIX_PATH=$(brew --prefix qt5)/lib/cmake \
&& make -j4
sudo make install