mirror of
https://github.com/Palakis/obs-websocket.git
synced 2024-08-30 18:12:16 +00:00
12 lines
282 B
Bash
Executable File
12 lines
282 B
Bash
Executable File
#!/bin/sh
|
|
set -ex
|
|
|
|
mkdir build && cd build
|
|
|
|
cmake .. \
|
|
-DQTDIR=$(brew --prefix qt5) \
|
|
-DLIBOBS_INCLUDE_DIR=../../obs-studio/libobs \
|
|
-DOBS_FRONTEND_LIB="$(pwd)/../../obs-studio/build/UI/obs-frontend-api/libobs-frontend-api.dylib" \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
&& make -j4
|