install-dependencies-osx.sh 534 B

1234567891011121314151617
  1. brew update
  2. #Base OBS Deps
  3. brew install ffmpeg x264 qt5 python
  4. # CEF Stuff
  5. cd ../
  6. curl -kLO http://opensource.spotify.com/cefbuilds/cef_binary_3.2704.1434.gec3e9ed_macosx64.tar.bz2
  7. tar -xf ./cef_binary_3.2704.1434.gec3e9ed_macosx64.tar.bz2
  8. cd ./cef_binary_3.2704.1434.gec3e9ed_macosx64
  9. mkdir build
  10. cd ./build
  11. cmake -DCMAKE_CXX_FLAGS="-std=c++11 -stdlib=libc++" -DCMAKE_EXE_LINKER_FLAGS="-std=c++11 -stdlib=libc++" ..
  12. make -j4
  13. mkdir libcef_dll
  14. mv ./libcef_dll_wrapper/libcef_dll_wrapper.a ./libcef_dll/libcef_dll_wrapper.a
  15. cd ../../