From a7df61ea92b29ddaa9f21e83633359d6fdae9fe5 Mon Sep 17 00:00:00 2001 From: teejusb <5017202+teejusb@users.noreply.github.com> Date: Sun, 12 Jun 2022 11:12:09 -0700 Subject: [PATCH] Add submodule command --- Build/README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/Build/README.md b/Build/README.md index 3b622a2a16..66f6e096c2 100644 --- a/Build/README.md +++ b/Build/README.md @@ -4,6 +4,18 @@ Warning Using CMake is considered stable, but not every single combination is known to work. Using the defaults as suggested should cause minimal problems. +Init Submodules +== +Make sure you initialize the submodules after cloning the repository. This is required. + +```sh +git clone --depth=1 https://github.com/itgmania/itgmania.gitc +cd itgmania +git submodule update --init +``` + +After that, you can follow the cmake instructions below to create the build. + Install CMake ==