mirror of
https://github.com/Palakis/obs-websocket.git
synced 2024-08-30 18:12:16 +00:00
10 lines
192 B
Bash
10 lines
192 B
Bash
#!/bin/sh
|
|
set -ex
|
|
|
|
echo "[obs-websocket] Running CMake.."
|
|
mkdir build && cd build
|
|
cmake -DCMAKE_INSTALL_PREFIX=/usr -DUSE_UBUNTU_FIX=true ..
|
|
|
|
echo "[obs-websocket] Building plugin.."
|
|
make -j4
|