mirror of
https://github.com/Palakis/obs-websocket.git
synced 2024-08-30 18:12:16 +00:00
15 lines
307 B
Bash
Executable File
15 lines
307 B
Bash
Executable File
#!/bin/sh
|
|
set -ex
|
|
|
|
# Build obs-studio
|
|
cd ..
|
|
git clone https://github.com/obsproject/obs-studio
|
|
cd obs-studio
|
|
OBSLatestTag=$(git describe --tags --abbrev=0)
|
|
git checkout $OBSLatestTag
|
|
mkdir build && cd build
|
|
cmake .. \
|
|
-DDISABLE_PLUGINS=true \
|
|
-DCMAKE_PREFIX_PATH=/usr/local/opt/qt/lib/cmake \
|
|
&& make -j4
|