Glad it's working for everyone

Mini-Tutorial for compiling with
MSYS2 / MinGW /GCC
My specification
Code:
Windows 10 64bit 1607 build 1493.477
i5 3570k @4.2ghz
8 GB DDR3
gtx 1060 6gb Latest Driver
1. Download MSYS2 64bit
Code:
http://repo.msys2.org/distrib/x86_64/msys2-x86_64-20161025.exe
install to drive C
2. Go to C:\msys64 then open msys2.exe
3. Type these commands:
Code:
pacman -Sy pacman
pacman -Syu
pacman -Su
close msys2.exe
4. Go to C:\msys64 then open mingw64.exe
5. Type these commands:
Code:
pacman -S mingw-w64-x86_64-qt5
pacman -S mingw-w64-x86_64-SDL2
pacman -S mingw-w64-x86_64-cmake
pacman -S git
pacman -S gcc
pacman -S mingw-w64-x86_64-gcc
pacman -S mingw-w64-x86_64-boost
pacman -S mingw-w64-x86_64-make
pacman -S make
pacman -S base-devel
close mingw64.exe
6. Assume there is no error from step 1-5,
- right-click on Windows Start Button
- click system > advanced system settings > environments variables
- on System variables window, choose "Path" > Edit
- Click New > type on new line: C:\msys64\mingw64\bin
- Click OK > Ok > ok
7. Go to C:\msys64 then open mingw64.exe again
5. Type these commands:
Code:
git clone --recursive https://github.com/Jhno591/citra
cd citra
mkdir build && cd build
cmake -G "MSYS Makefiles" -DCMAKE_BUILD_TYPE=Release ..
make
I hope it helps