commit 3d01cf26b117c52903d49ab46a7ae14550679785
parent 2f2fbadf99ae485258759ce656b96b35a63133a7
Author: Marek Wiewiorski <marek@mwicat.com>
Date: Sat, 20 Nov 2021 22:30:05 +0100
Correct BUILDING.md to initialize submodules from AnalogTapeModel and not AnalogTapeModel/Plugin (#230)
Diffstat:
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/BUILDING.md b/BUILDING.md
@@ -13,7 +13,7 @@ using the following commands:
git clone --recursive https://github.com/jatinchowdhury18/AnalogTapeModel.git
# Enter the repository
-cd AnalogTapeModel/Plugin
+cd AnalogTapeModel
# Initialize submodules
git submodule update --init --recursive
@@ -22,6 +22,8 @@ git submodule update --init --recursive
Next you can generate the builds with CMake:
```bash
+cd Plugin
+
cmake -Bbuild
cmake --build build/ --config Release
```