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

15 lines
377 B
Bash
Raw Normal View History

2017-06-29 19:01:10 +00:00
# Make sure ccache is found
export PATH=/usr/local/opt/ccache/libexec:$PATH
2018-05-29 19:13:02 +00:00
cd ./plugins/obs-browser
git checkout origin/osx
cd -
2017-04-19 19:54:15 +00:00
mkdir build
cd build
2018-02-19 19:54:37 +00:00
cmake -DENABLE_SPARKLE_UPDATER=ON \
-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 ..