obs-studio/CI/install-dependencies-osx.sh

18 lines
540 B
Bash
Raw Normal View History

2016-10-09 15:26:44 -07:00
brew update
2016-10-13 17:30:23 -07:00
#Base OBS Deps
2016-10-16 21:22:47 -07:00
brew install ffmpeg x264 qt5 python cmake
2016-10-13 17:30:23 -07:00
2016-10-10 20:49:45 -07:00
# CEF Stuff
cd ../
curl -kLO http://opensource.spotify.com/cefbuilds/cef_binary_3.2704.1434.gec3e9ed_macosx64.tar.bz2
tar -xf ./cef_binary_3.2704.1434.gec3e9ed_macosx64.tar.bz2
cd ./cef_binary_3.2704.1434.gec3e9ed_macosx64
mkdir build
cd ./build
cmake -DCMAKE_CXX_FLAGS="-std=c++11 -stdlib=libc++" -DCMAKE_EXE_LINKER_FLAGS="-std=c++11 -stdlib=libc++" ..
make -j4
mkdir libcef_dll
mv ./libcef_dll_wrapper/libcef_dll_wrapper.a ./libcef_dll/libcef_dll_wrapper.a
cd ../../