diff options
| author | Benjamin Mugnier <mugnier.benjamin@gmail.com> | 2023-07-11 20:48:31 +0200 |
|---|---|---|
| committer | Benjamin Mugnier <mugnier.benjamin@gmail.com> | 2023-07-11 20:48:31 +0200 |
| commit | ad3b8b649b0f80e330144f69fcd2c184df916e27 (patch) | |
| tree | c1ac48df8a9d1e8645f07d7c6955f900488ef2f7 | |
| parent | 559611d9a4106482fce6cd91de58fc409c6bd5a9 (diff) | |
readme: Add '--recursive' to git submodule command
Not doing so results in the following error :
CMake Error at Externals/cubeb/CMakeLists.txt:30 (message):
Could not find sanitizers-cmake: run
git submodule update --init --recursive
in base git checkout
As the advice is correct, update readme with the correct command.
| -rw-r--r-- | Readme.md | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -46,7 +46,7 @@ installed when building. Make sure to pull submodules before building: ```sh -git submodule update --init +git submodule update --init --recursive ``` The "Release" solution configuration includes performance optimizations for the best user experience but complicates debugging Dolphin. @@ -63,7 +63,7 @@ to install any missing packages yourself. You may refer to the [wiki](https://gi Make sure to pull submodules before building: ```sh -git submodule update --init +git submodule update --init --recursive ``` ### macOS Build Steps: @@ -128,7 +128,7 @@ Android dev environment set up, see [AndroidSetup.md](AndroidSetup.md). Make sure to pull submodules before building: ```sh -git submodule update --init +git submodule update --init --recursive ``` If using Android Studio, import the Gradle project located in `./Source/Android`. |
