From aefe8bf51025421c820c0c19922c02b5bb1cc4ee Mon Sep 17 00:00:00 2001 From: wwylele Date: Mon, 5 Dec 2016 14:43:00 +0200 Subject: [PATCH] Revert 04c003be8cd8331b87decc7ae9520967304512a1...5e9e5e9e7dce417c13839262cc202776fe1bec29 on Building for Windows --- 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 3d5bccc..5e74a4d 100644 --- a/Building-for-Windows.md +++ b/Building-for-Windows.md @@ -78,8 +78,8 @@ 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_CXX_FLAGS="-DMICROPROFILE_ENABLED=0" .. -make -j4 +cmake -G "MSYS Makefiles" -DCMAKE_BUILD_TYPE=Release -DCMAKE_MAKE_PROGRAM=mingw32-make -DCMAKE_CXX_FLAGS="-DMICROPROFILE_ENABLED=0" .. +mingw32-make -j4 # test citra out with ./src/citra_qt/citra-qt.exe ```