Updated Common Issues (markdown)

wwylele 2016-07-02 09:08:41 +03:00
parent a5d6d37b98
commit 1ceb0686d9

@ -1,3 +1,10 @@
### Building for all platforms
---
* If you have encountered such an error: `/path/to/citra/externals/<some_name_here> 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 ### 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 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.