From 2cd9e61717c4133e5b9d83e9aa7aa29466b99c51 Mon Sep 17 00:00:00 2001 From: WarmUpTill <19472752+WarmUpTill@users.noreply.github.com> Date: Mon, 15 Dec 2025 19:52:19 +0100 Subject: [PATCH] Adapt paths to new OBS directory structure --- BUILDING.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/BUILDING.md b/BUILDING.md index 26a2d95a..eba09baa 100644 --- a/BUILDING.md +++ b/BUILDING.md @@ -6,18 +6,18 @@ You have the option to ... Both methods require [CMake](https://cmake.org/download/). -The plugin can be compiled for OBS 27 and above, although using the latest version of OBS is recommended to support all features. +The plugin can be compiled for OBS 31 and above, although using the latest version of OBS is recommended to support all features. ## Compiling in tree (recommended for development) This section assumes that you have a working [OBS Studio development environment](https://obsproject.com/wiki/Building-OBS-Studio). -Add the "SceneSwitcher" source directory to your obs-studio source directory under obs-studio/UI/frontend-plugins/: +Add the "SceneSwitcher" source directory to your obs-studio source directory under obs-studio/plugins: ``` -cd obs-studio/UI/frontend-plugins/ +cd obs-studio/plugins git clone --recursive https://github.com/WarmUpTill/SceneSwitcher.git ``` -Then modify the obs-studio/UI/frontend-plugins/CMakeLists.txt Example and add an entry for the scene switcher: +Then modify the obs-studio/plugins/CMakeLists.txt and add an entry for the scene switcher: ``` add_subdirectory(SceneSwitcher) ```