From c3b4dc7bba2f3de6aa9102d4b7fb2ea2e6d75a23 Mon Sep 17 00:00:00 2001 From: James Rowe Date: Sun, 21 May 2017 17:22:45 -0600 Subject: [PATCH] only vs2017 now --- Building-for-Windows.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Building-for-Windows.md b/Building-for-Windows.md index a45655a..2b25f7a 100644 --- a/Building-for-Windows.md +++ b/Building-for-Windows.md @@ -2,7 +2,7 @@ ### Minimal Dependencies On Windows, all library dependencies are automatically included within the "externals" folder or can be downloaded on-demand. To build Citra, you simply need to install: -* **[Visual Studio 2015/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. ![2](http://i.imgur.com/JEabR4V.png?2) * **Git** - We recommend [msysgit](http://msysgit.github.io/). @@ -28,7 +28,7 @@ NOTE: Citra by default downloads to C:\Users\\citra ![11](http://i.imgur.com/mwes5AV.png?1) - * Click the "Configure" button and choose "Visual Studio 14 2015 Win64" or "Visual Studio 15 2017 Win64", depending on which version of Visual Studio you are using. + * Click the "Configure" button and choose "Visual Studio 15 2017 Win64" * 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://i.imgur.com/scH2BrY.png?2) @@ -117,7 +117,7 @@ Follow the installers instructions. ``` mkdir build cd build -cmake.exe .. -TLLVM-vs2014 -G"Visual Studio 14 2015 Win64" -DCITRA_USE_BUNDLED_SDL2=1 -DCITRA_USE_BUNDLED_QT=1 -DCMAKE_BUILD_TYPE=Release +cmake.exe .. -TLLVM-vs2014 -G"Visual Studio 15 2017 Win64" -DCITRA_USE_BUNDLED_SDL2=1 -DCITRA_USE_BUNDLED_QT=1 -DCMAKE_BUILD_TYPE=Release cmake --build . --target citra-qt # test citra out with .\bin\Release\citra-qt