README.md: add VS2022 configure/build examples

Change-Id: I7b93af4f7a6dfd79bdb2b6c60f624b638466196e
diff --git a/README.md b/README.md
index afc4e9b..12498f5 100644
--- a/README.md
+++ b/README.md
@@ -224,12 +224,19 @@
     # This does not require a bash shell; Command Prompt (cmd.exe) is fine.
     # This assumes the build host is a Windows x64 computer.
 
-    # To build with Visual Studio 2019 for the x64 target:
-    $ cmake path/to/aom -G "Visual Studio 16 2019"
-    $ cmake --build .
+    # To create a Visual Studio 2022 solution for the x64 target:
+    $ cmake path/to/aom -G "Visual Studio 17 2022"
 
-    # To build with Visual Studio 2019 for the 32-bit x86 target:
+    # To create a Visual Studio 2022 solution for the 32-bit x86 target:
+    $ cmake path/to/aom -G "Visual Studio 17 2022" -A Win32
+
+    # To create a Visual Studio 2019 solution for the x64 target:
+    $ cmake path/to/aom -G "Visual Studio 16 2019"
+
+    # To create a Visual Studio 2019 solution for the 32-bit x86 target:
     $ cmake path/to/aom -G "Visual Studio 16 2019" -A Win32
+
+    # To build the solution:
     $ cmake --build .
 ~~~