The images should be fixed this time.

Hexagon12 2017-05-23 16:52:34 +03:00
parent 6afe9cb943
commit e8593493d9

@ -4,11 +4,11 @@ On Windows, all library dependencies are automatically included within the "exte
* **[Visual Studio 2017 Community](https://www.visualstudio.com/products/visual-studio-community-vs)** - **Make sure to select C++ support in the installer**. * **[Visual Studio 2017 Community](https://www.visualstudio.com/products/visual-studio-community-vs)** - **Make sure to select C++ support in the installer**.
* **[CMake](http://www.cmake.org/cmake/resources/software.html)** - Used to generate Visual Studio project files. * **[CMake](http://www.cmake.org/cmake/resources/software.html)** - Used to generate Visual Studio project files.
![2](http://imgur.com/vSIXMHd) ![2](http://i.imgur.com/vSIXMHd.jpg)
* **Git** - We recommend [msysgit](http://msysgit.github.io/). * **Git** - We recommend [msysgit](http://msysgit.github.io/).
![3](http://imgur.com/joCBhIB) ![3](http://i.imgur.com/joCBhIB.jpg)
* While installing Git Bash, you should tell it to include Git in your system path. (Choose the "Use Git from the Windows Command Prompt" option.) If you missed that, don't worry, you'll just have to manually tell CMake where your git.exe is, since it's used to include version info into the built executable. * While installing Git Bash, you should tell it to include Git in your system path. (Choose the "Use Git from the Windows Command Prompt" option.) If you missed that, don't worry, you'll just have to manually tell CMake where your git.exe is, since it's used to include version info into the built executable.
![4](http://imgur.com/th8sFud) ![4](http://i.imgur.com/th8sFud.jpg)
### Cloning Citra in Git: ### Cloning Citra in Git:
@ -17,46 +17,46 @@ On Windows, all library dependencies are automatically included within the "exte
git clone --recursive https://github.com/citra-emu/citra.git git clone --recursive https://github.com/citra-emu/citra.git
cd citra cd citra
``` ```
![9](http://imgur.com/Yb5ahlL) ![9](http://i.imgur.com/Yb5ahlL.jpg)
NOTE: Citra by default downloads to C:\Users\<user-name>\citra NOTE: Citra by default downloads to C:\Users\<user-name>\citra
### Building ### Building
* Open cmake-gui and point it to the Citra directory. Default: C:\Users\<user name>\citra * Open cmake-gui and point it to the Citra directory. Default: C:\Users\<user name>\citra
![10](http://imgur.com/uFKhnKO) ![10](http://i.imgur.com/uFKhnKO.jpg)
* For the build directory, use a `build/` subdirectory inside the source directory or some other directory of your choice. (Tell CMake to create it.) * For the build directory, use a `build/` subdirectory inside the source directory or some other directory of your choice. (Tell CMake to create it.)
![11](http://imgur.com/DeafFmS) ![11](http://i.imgur.com/DeafFmS.jpg)
* Click the "Configure" button and choose "Visual Studio 15 2017 Win64" * Click the "Configure" button and choose "Visual Studio 15 2017 Win64"
![12](http://imgur.com/RvVcyCP) ![12](http://i.imgur.com/RvVcyCP.jpg)
* When CMake gives you an error, find the CITRA_USE_BUNDLED_SDL2 and CITRA_USE_BUNDLED_QT options on the list and check their respective checkboxes. Click configure again. CMake will now download the required libraries. * When CMake gives you an error, find the CITRA_USE_BUNDLED_SDL2 and CITRA_USE_BUNDLED_QT options on the list and check their respective checkboxes. Click configure again. CMake will now download the required libraries.
![13](http://imgur.com/nyHvJSJ) ![13](http://i.imgur.com/nyHvJSJ.jpg)
* Click "Generate" to create the project files. * Click "Generate" to create the project files.
![14](http://imgur.com/CkZgD4p) ![14](http://i.imgur.com/CkZgD4p.jpg)
* Open the solution file citra.sln in Visual Studio 2017, which is located in the build folder. * Open the solution file citra.sln in Visual Studio 2017, which is located in the build folder.
![15](http://imgur.com/sCWIZcK) ![15](http://i.imgur.com/sCWIZcK.jpg)
* Depending on which frontend (SDL2 or Qt) you want to build or run, select "citra" or "citra-qt" in the Solution Explorer, right-click and "Set as StartUp Project". * Depending on which frontend (SDL2 or Qt) you want to build or run, select "citra" or "citra-qt" in the Solution Explorer, right-click and "Set as StartUp Project".
![16](http://imgur.com/0Bvz9za) ![16](http://i.imgur.com/0Bvz9za.jpg)
![17](http://imgur.com/FkuAwd8) ![17](http://i.imgur.com/FkuAwd8.jpg)
* Select the appropriate build type, Debug for debug purposes or Release for performance (in case of doubt choose the latest). * Select the appropriate build type, Debug for debug purposes or Release for performance (in case of doubt choose the latest).
![18](http://imgur.com/Gqifkc0) ![18](http://i.imgur.com/Gqifkc0.jpg)
* Press F5 or select Build → Rebuild Solution in the menu. * Press F5 or select Build → Rebuild Solution in the menu.
![19](http://imgur.com/7ro9uSB) ![19](http://i.imgur.com/7ro9uSB.jpg)
* NOTE: Please refer to [Common Issues](https://github.com/citra-emu/citra/wiki/Common-Issues) if any errors. If you did not find a solution feel free to ask us in the IRC channel: #citra @ [Freenode](https://webchat.freenode.net/). * NOTE: Please refer to [Common Issues](https://github.com/citra-emu/citra/wiki/Common-Issues) if any errors. If you did not find a solution feel free to ask us in the IRC channel: #citra @ [Freenode](https://webchat.freenode.net/).