From 40a701a9348d06c745bf6e11aa2660ceb726a30f Mon Sep 17 00:00:00 2001 From: WarmUpTill Date: Sun, 18 Jul 2021 19:37:16 +0200 Subject: [PATCH] Add "--recursive" option to "git clone" calls --- BUILDING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BUILDING.md b/BUILDING.md index a444e6da..09536e05 100644 --- a/BUILDING.md +++ b/BUILDING.md @@ -10,7 +10,7 @@ As both methods require you to have a working [OBS Studio development environmen Add the "SceneSwitcher" source directory to your obs-studio source directory under obs-studio/UI/frontend-plugins/: ``` cd obs-studio/UI/frontend-plugins/ -git clone https://github.com/WarmUpTill/SceneSwitcher.git +git clone --recursive https://github.com/WarmUpTill/SceneSwitcher.git ``` Then modify the obs-studio/UI/frontend-plugins/CMakeLists.txt file and add an entry for the scene switcher: @@ -21,7 +21,7 @@ add_subdirectory(SceneSwitcher) You'll need [Qt](https://download.qt.io/official_releases/qt/5.15/5.15.2/), [CMake](https://cmake.org/download/) and a working [OBS Studio development environment](https://obsproject.com/wiki/install-instructions) installed on your computer. Once you've set this up, do the following: ``` -git clone https://github.com/WarmUpTill/SceneSwitcher.git +git clone --recursive https://github.com/WarmUpTill/SceneSwitcher.git cd SceneSwitcher mkdir build && cd build ```