From de09192292dad162d7ca75b669379024fdc2bf47 Mon Sep 17 00:00:00 2001 From: N00byKing Date: Tue, 10 Apr 2018 19:03:43 +0200 Subject: [PATCH] Remove curl references --- Building-for-Windows.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Building-for-Windows.md b/Building-for-Windows.md index 946ed22..02884a0 100644 --- a/Building-for-Windows.md +++ b/Building-for-Windows.md @@ -69,7 +69,7 @@ Make sure to follow the instructions and update to the latest version by running #### Install Citra dependencies for MinGW-w64 * Open the "MSYS2 MinGW 64-bit" (mingw64.exe) shell - * 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 mingw-w64-x86_64-curl git` + * 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 git` #### Clone the Citra repository with git. @@ -79,7 +79,7 @@ Make sure to follow the instructions and update to the latest version by running #### Run the following commands to build Citra (dynamic linked build) ```bash mkdir build && cd build -cmake -G "MSYS Makefiles" -DCMAKE_BUILD_TYPE=Release -DCMAKE_MAKE_PROGRAM=mingw32-make -DCMAKE_CXX_FLAGS="-DMICROPROFILE_ENABLED=0" -DUSE_SYSTEM_CURL=1 .. +cmake -G "MSYS Makefiles" -DCMAKE_BUILD_TYPE=Release -DCMAKE_MAKE_PROGRAM=mingw32-make -DCMAKE_CXX_FLAGS="-DMICROPROFILE_ENABLED=0" .. # should we use `make`? mingw32-make -j4 # test Citra out with