From f66f2b7c849a587230090aca12231dcf5a09b0b6 Mon Sep 17 00:00:00 2001 From: MaleNurse Date: Thu, 8 Jul 2021 07:48:58 -0700 Subject: [PATCH] Update deps build to correct cmake command for VS2019 (#6666) --- doc/How to build - Windows.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/How to build - Windows.md b/doc/How to build - Windows.md index 54c02fca1..42d559c5a 100644 --- a/doc/How to build - Windows.md +++ b/doc/How to build - Windows.md @@ -154,7 +154,7 @@ Then `cd` into the `deps` directory and use these commands to build: mkdir build cd build - cmake .. -G "Visual Studio 12 Win64" -DDESTDIR="C:\local\destdir-custom" + cmake .. -G "Visual Studio 16 2019" -DDESTDIR="C:\local\destdir-custom" msbuild /m ALL_BUILD.vcxproj You can also use the Visual Studio GUI or other generators as mentioned above.