From ba0eac9764962286c5daa9c7439dea07f7fee6ed Mon Sep 17 00:00:00 2001 From: SamsonLib Date: Sat, 21 Jun 2025 23:48:59 +0200 Subject: [PATCH] Added Submodule init with bash code block --- resources/docs/compguide.md | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/resources/docs/compguide.md b/resources/docs/compguide.md index 713b6c1..9e1e821 100644 --- a/resources/docs/compguide.md +++ b/resources/docs/compguide.md @@ -54,10 +54,17 @@ then: ```bash cd pound - ``` -lastly: +To initialize the submodules, direct to ``3rd_Party`` and than run ``git submodule update --init --recursive`` + +```bash +cd 3rd_Party +git submodule update --init --recursive +cd .. +``` + +lastly (in the pound directory not 3rd_Party) run: ```bash cmake -G Ninja -B . -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++