From 41a77dc458dff9bd92ad3ebf117624b458e0bec9 Mon Sep 17 00:00:00 2001 From: Crazygamer212 <125163246+Crazygamer212@users.noreply.github.com> Date: Sat, 19 Jul 2025 21:14:47 +0100 Subject: [PATCH] Update compguide.md the submodules need to be created on the ubuntu build as well --- resources/docs/compguide.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/resources/docs/compguide.md b/resources/docs/compguide.md index b2dbb25..83132e6 100644 --- a/resources/docs/compguide.md +++ b/resources/docs/compguide.md @@ -32,6 +32,13 @@ git clone https://www.github.com/pound-emu/pound.git cd pound ``` +Initialize the submodules: + +```bash +cd 3rd_Party +git submodule update --init --recursive +cd .. +``` and then: `cmake -G Ninja -B . -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++`