From 1ceb0686d9c54ca577cecb9add0dde640ce4605c Mon Sep 17 00:00:00 2001 From: wwylele Date: Sat, 2 Jul 2016 09:08:41 +0300 Subject: [PATCH] Updated Common Issues (markdown) --- Common-Issues.md | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/Common-Issues.md b/Common-Issues.md index 250fa7d..8952fe9 100644 --- a/Common-Issues.md +++ b/Common-Issues.md @@ -1,3 +1,10 @@ +### Building for all platforms +--- +* If you have encountered such an error: `/path/to/citra/externals/ does not contain a CMakeLists.txt file.`, while configuring in CMake, it means you forgot to add `--recursive` when `git clone`. You can fix it by the following commands to obtain all submodules: + + git submodule init + git submodule update + ### Building for Windows --- @@ -13,9 +20,3 @@ * If CMake keeps making Win32 builds, you may need to manually specify `CMAKE_GENERATOR_PLATFORM` with a string value of `x64` when configuring. -* If you have encountered an error, `/path/to/citra/externals/soundtouch does not contain a CMakeLists.txt file.`, while configuring in CMake, you need to use the following commands to recursively obtain the CMakeLists.txt for SoundTouch: - - git submodule init - git submodule update - - For TortoiseGIT users, this can be easily obtained via `Right Click Context Menu > TortoiseGIT > Submodule Update ...` and enable `Recursive` option in the Update Submodule wizard. \ No newline at end of file