From 14d43ac05b946a3830955aada3daa3f5f73e9dd8 Mon Sep 17 00:00:00 2001 From: Curt Grimes Date: Mon, 29 Jun 2020 20:24:11 -0500 Subject: [PATCH] [Bug Fix] Reenable building with captions on MacOS OBS on MacOS supports closed caption encoding. The Windows-only dependencies [here](https://github.com/obsproject/obs-studio/blob/master/UI/frontend-plugins/frontend-tools/CMakeLists.txt#L73) are only related to audio capture, not closed caption encoding. --- CI/install-build-obs-macos.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/CI/install-build-obs-macos.sh b/CI/install-build-obs-macos.sh index 4af63b49..0dc610aa 100755 --- a/CI/install-build-obs-macos.sh +++ b/CI/install-build-obs-macos.sh @@ -34,6 +34,7 @@ git checkout $OBSLatestTag mkdir build && cd build echo "[obs-websocket] Building obs-studio.." cmake .. \ + -DBUILD_CAPTIONS=true \ -DCMAKE_OSX_DEPLOYMENT_TARGET=10.11 \ -DDISABLE_PLUGINS=true \ -DENABLE_SCRIPTING=0 \