2018-09-01 19:01:15 +00:00
## THIS GUIDE IS INTENDED FOR DEVELOPERS ONLY, SUPPORT WILL ONLY BE GIVEN IF YOU'RE A DEVELOPER.
2019-04-08 18:22:40 +00:00
## Method I: MSVC Build for Windows
2018-01-18 17:32:06 +00:00
2018-01-14 06:15:50 +00:00
### Minimal Dependencies
2018-01-18 17:32:06 +00:00
2018-01-14 06:15:50 +00:00
On Windows, all library dependencies are automatically included within the "externals" folder or can be downloaded on-demand. To build yuzu, you simply need to install:
2019-04-08 18:22:40 +00:00
* **[Visual Studio 2017 Community](https://visualstudio.microsoft.com/downloads/)** - **Make sure to select C++ support in the installer. Visual Studio 2019 is not yet supported.**
* **[CMake](https://cmake.org/download/)** - Used to generate Visual Studio project files. Does not matter if either 32-bit or 64-bit version is installed.
2018-01-18 17:32:06 +00:00
2019-04-08 18:22:40 +00:00
![2 ](https://i.imgur.com/giDwuTm.png )
2018-01-18 17:32:06 +00:00
2019-04-08 18:22:40 +00:00
* **Git** - We recommend [Git for Windows ](https://gitforwindows.org/ ).
2018-01-18 17:32:06 +00:00
2019-04-08 18:22:40 +00:00
![3 ](https://i.imgur.com/UeSzkBw.png )
2018-01-18 17:32:06 +00:00
2019-04-08 18:22:40 +00:00
* While installing Git Bash, you should tell it to include Git in your system path. (Choose the "Git from the command line and also from 3rd-party software" 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.
2018-01-14 06:15:50 +00:00
2019-04-08 18:22:40 +00:00
![4 ](https://i.imgur.com/x0rRs1t.png )
2018-01-14 06:15:50 +00:00
2018-01-18 17:32:06 +00:00
### Cloning yuzu with Git
2018-01-14 06:15:50 +00:00
2019-02-09 14:12:11 +00:00
**Nightly (master):**
```
cmd
2018-01-14 06:15:50 +00:00
git clone --recursive https://github.com/yuzu-emu/yuzu.git
cd yuzu
```
2018-01-18 17:32:06 +00:00
2019-02-09 14:12:31 +00:00
**Canary:**
2019-02-09 14:12:11 +00:00
```
cmd
git clone --recursive https://github.com/yuzu-emu/yuzu-canary.git
2019-02-09 14:12:48 +00:00
cd yuzu-canary
2019-02-09 14:12:11 +00:00
```
2019-04-08 18:22:40 +00:00
![9 ](https://i.imgur.com/CcxIAht.png )
2018-01-14 06:15:50 +00:00
2019-04-08 18:22:40 +00:00
* *(Note: yuzu by default downloads to `C:\Users\<user-name>\yuzu` (Nightly) or `C:\Users\<user-name>\yuzu-canary` (Canary)*
2018-01-14 06:15:50 +00:00
### Building
2018-01-18 17:32:06 +00:00
2019-04-08 18:22:40 +00:00
* Open the CMake GUI application and point it to the `yuzu` (Nightly) or `yuzu-canary` (Canary) directory.
2018-01-18 17:32:06 +00:00
2019-04-08 18:22:40 +00:00
![10 ](https://i.imgur.com/qOslIWv.png )
2018-01-14 06:15:50 +00:00
2019-04-08 18:22:40 +00:00
* For the build directory, use a `/build` subdirectory inside the source directory or some other directory of your choice. (Tell CMake to create it.)
2018-01-18 17:32:06 +00:00
2019-04-08 18:22:40 +00:00
![11 ](https://i.imgur.com/cNnhs22.png )
2018-01-18 17:32:06 +00:00
2019-04-08 18:22:40 +00:00
* Click the "Configure" button and choose "Visual Studio 15 2017", with "x64" for the optional platform.
* *(Note: older CMake versions prior to 3.14 combines these two options as "Visual Studio 15 2017 Win64")*
2018-01-14 06:15:50 +00:00
2019-04-08 18:22:40 +00:00
![12 ](https://i.imgur.com/p9kJ6EB.png )
* *(Note: If you used GitHub's own app to clone, run `git submodule update --init --recursive` to get the remaining dependencies)*
2018-01-18 17:32:06 +00:00
* Click "Generate" to create the project files.
2018-01-14 06:15:50 +00:00
2019-04-08 18:22:40 +00:00
![15 ](https://i.imgur.com/5LKg92k.png )
2018-01-14 06:15:50 +00:00
* Open the solution file yuzu.sln in Visual Studio 2017, which is located in the build folder.
2019-04-08 18:22:40 +00:00
![16 ](https://i.imgur.com/208yMml.png )
2018-01-14 06:15:50 +00:00
2018-01-18 17:32:06 +00:00
* Depending if you want a graphical user interface or not ("yuzu" is with a graphical user interface, while "yuzu-cmd" is just the command line version of it), select "yuzu" or "yuzu-cmd" in the Solution Explorer, right-click and "Set as StartUp Project".
2018-01-14 06:15:50 +00:00
2019-04-08 18:22:40 +00:00
![17 ](https://i.imgur.com/nPMajnn.png ) ![18 ](https://i.imgur.com/BDMLzRZ.png )
2018-01-14 06:15:50 +00:00
2019-04-08 18:22:40 +00:00
* Select the appropriate build type, Debug for debug purposes or Release for performance (in case of doubt choose Release).
2018-01-14 06:15:50 +00:00
2019-04-08 18:22:40 +00:00
![19 ](https://i.imgur.com/qxg4roC.png )
2018-01-14 06:15:50 +00:00
2019-04-08 18:22:40 +00:00
* Right-click the project you want to build and press Build in the submenu or press F5.
2018-01-14 06:15:50 +00:00
2019-04-08 18:22:40 +00:00
![20 ](https://i.imgur.com/CkQgOFW.png )
2018-01-14 06:15:50 +00:00
2019-04-22 03:12:39 +00:00
Feel free to ask us in the IRC channel #yuzu -emu @ [Freenode ](https://webchat.freenode.net/ ) or on [Discord ](https://discord.gg/XQV6dn9 ) if you have issues.
2018-01-14 06:15:50 +00:00
2019-04-08 18:22:40 +00:00
## Method II: MinGW-w64 Build with MSYS2
2018-01-14 06:15:50 +00:00
2018-01-18 17:32:06 +00:00
### Prerequisites to install
2018-01-14 06:15:50 +00:00
2019-04-08 18:22:40 +00:00
* [MSYS2 ](http://www.msys2.org/ )
2018-01-14 06:15:50 +00:00
Make sure to follow the instructions and update to the latest version by running `pacman -Syu` as many times as needed.
2018-01-18 17:32:06 +00:00
### Install yuzu dependencies for MinGW-w64
2018-01-14 06:15:50 +00:00
2018-01-18 17:32:06 +00:00
* Open the "MSYS2 MinGW 64-bit" (mingw64.exe) shell
2018-11-15 09:25:27 +00:00
* Download and install all dependencies using: `pacman -S mingw-w64-x86_64-toolchain mingw-w64-x86_64-qt5 mingw-w64-x86_64-SDL2 mingw-w64-x86_64-cmake make git python2`
2018-01-14 06:15:50 +00:00
2018-01-18 17:32:06 +00:00
### Clone the yuzu repository with Git
2018-01-14 06:15:50 +00:00
2019-02-09 14:12:11 +00:00
**Nightly (master):**
```
git clone --recursive https://github.com/yuzu-emu/yuzu.git
cd yuzu
```
**Canary:**
```
git clone --recursive https://github.com/yuzu-emu/yuzu-canary.git
cd yuzu-canary
```
2018-01-18 17:32:06 +00:00
2019-04-08 18:22:40 +00:00
### Run the following commands to build yuzu (dynamically linked build)
2018-01-18 17:32:06 +00:00
```cmd
2018-01-14 06:15:50 +00:00
mkdir build & & cd build
2018-04-19 23:12:17 +00:00
cmake -G "MSYS Makefiles" -DCMAKE_MAKE_PROGRAM=mingw32-make -DCMAKE_BUILD_TYPE=Release ..
mingw32-make -j4
2018-01-14 06:15:50 +00:00
# test yuzu out with
2018-02-10 20:05:20 +00:00
./bin/yuzu.exe
2018-01-14 06:15:50 +00:00
```
2019-04-08 18:22:40 +00:00
* *(Note: This build is not a static build meaning that you need to include all of the DLLs with the .exe in order to use it!)*
2018-01-14 06:15:50 +00:00
2018-01-18 17:32:06 +00:00
### Building without Qt (Optional)
2018-01-14 06:15:50 +00:00
Doesn't require the rather large Qt dependency, but you will lack a GUI frontend.
* Pass the `-DENABLE_QT=no` flag to cmake
2018-03-24 09:09:49 +00:00
## Building from the command line with MSVC
```
git clone --recursive https://github.com/yuzu-emu/yuzu
2018-08-26 22:26:42 +00:00
cd yuzu
2018-03-24 09:09:49 +00:00
mkdir build
cd build
cmake .. -G "Visual Studio 15 2017 Win64"
cmake --build .
```