mirror of
https://github.com/Palakis/obs-websocket.git
synced 2024-08-30 18:12:16 +00:00
* CMake: Copy PDB file to OBS build directory on Debug build All native OBS build objects also bundle the associated PDB file for debugging and handling crash reports. * CMake: Add post-build commands for RelWithDebInfo Add post-build commands for the RelWithDebInfo build config. OBS official builds use RelWithDebInfo, so we should be able to treat it as a release config. * CI: Disable building OBS native plugins Use the OBS CMake flag DISABLE_PLUGINS to disable building plugins included with OBS (including submodule plugins like obs-browser). This should speed up builds on Windows when we have to rebuild OBS and on Mac. * CI: Don't clone/update OBS submodules The only submodules presently in OBS are in its plugins, which we don't need to build. * CI: Use obsproject/obs-studio instead of jp9000/obs-studio The OBS GitHub recently changed from jp9000/obs-studio to obsproject/obs-studio, so use that instead. * CI: Build as RelWithDebInfo instead of Release OBS official builds are produced with RelWithDebInfo. This will produce a PDB file for the plugin, similar to the native OBS plugins. * CI(Windows): Build OBS if current build config doesn't exist If OBS libs for the current build config do not exist, build OBS before building obs-websocket.
34 lines
788 B
Bash
Executable File
34 lines
788 B
Bash
Executable File
#!/bin/sh
|
|
set -ex
|
|
|
|
# OBS Studio deps
|
|
brew update
|
|
brew install ffmpeg
|
|
brew install libav
|
|
|
|
# qtwebsockets deps
|
|
# qt latest
|
|
#brew install qt5
|
|
|
|
# qt 5.9.2
|
|
brew install https://raw.githubusercontent.com/Homebrew/homebrew-core/2b121c9a96e58a5da14228630cb71d5bead7137e/Formula/qt.rb
|
|
|
|
#echo "Qt path: $(find /usr/local/Cellar/qt5 -d 1 | tail -n 1)"
|
|
|
|
# Build obs-studio
|
|
cd ..
|
|
git clone https://github.com/obsproject/obs-studio
|
|
cd obs-studio
|
|
git checkout 21.0.0
|
|
mkdir build && cd build
|
|
cmake .. \
|
|
-DDISABLE_PLUGINS=true \
|
|
-DCMAKE_PREFIX_PATH=/usr/local/opt/qt/lib/cmake \
|
|
&& make -j4
|
|
|
|
# Packages app
|
|
cd ..
|
|
curl -L -O http://s.sudre.free.fr/Software/files/Packages.dmg -f --retry 5 -C -
|
|
hdiutil attach ./Packages.dmg
|
|
sudo installer -pkg /Volumes/Packages\ 1.2.2/packages/Packages.pkg -target /
|