obs-studio/CI/before-script-osx.sh

15 lines
377 B
Bash
Raw Normal View History

# Make sure ccache is found
export PATH=/usr/local/opt/ccache/libexec:$PATH
cd ./plugins/obs-browser
git checkout origin/osx
cd -
2016-10-09 15:26:44 -07:00
mkdir build
cd build
2018-01-30 20:42:07 -08:00
cmake -DENABLE_SPARKLE_UPDATER=ON \
2018-01-28 16:58:36 -08:00
-DCMAKE_OSX_DEPLOYMENT_TARGET=10.10 \
-DDepsPath=/tmp/obsdeps \
-DVLCPath=$PWD/../../vlc-master \
-DBUILD_BROWSER=ON \
-DCEF_ROOT_DIR=$PWD/../../cef_binary_${CEF_BUILD_VERSION}_macosx64 ..