From 2719da3685907bc71bbe7d693c491711da87ff96 Mon Sep 17 00:00:00 2001 From: tt2468 Date: Mon, 27 Apr 2020 10:55:16 -0700 Subject: [PATCH] [Bug Fix] Don't build with captions on MacOS According to [this](https://github.com/obsproject/obs-studio/blob/master/UI/frontend-plugins/frontend-tools/CMakeLists.txt#L73), captions support is not active on MacOS, so we should not build it here. --- CI/install-build-obs-macos.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/CI/install-build-obs-macos.sh b/CI/install-build-obs-macos.sh index 0dc610aa..4af63b49 100755 --- a/CI/install-build-obs-macos.sh +++ b/CI/install-build-obs-macos.sh @@ -34,7 +34,6 @@ 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 \