summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorBill Ticehurst <billti@microsoft.com>2019-05-16 20:07:39 -0700
committerBen Smith <binji@chromium.org>2019-05-16 20:07:39 -0700
commitca758dcb15eca9894f555456c3e36e55df81dadd (patch)
tree88c6367cf1cf696ebf2c04b239366eba056f287e /README.md
parent66cb491d3ecd8f0ea438fd90033112330117729b (diff)
downloadwabt-ca758dcb15eca9894f555456c3e36e55df81dadd.tar.gz
wabt-ca758dcb15eca9894f555456c3e36e55df81dadd.tar.bz2
wabt-ca758dcb15eca9894f555456c3e36e55df81dadd.zip
Fix install prefix in README (#1082)
Diffstat (limited to 'README.md')
-rw-r--r--README.md8
1 files changed, 6 insertions, 2 deletions
diff --git a/README.md b/README.md
index f210f55c..c8ef1489 100644
--- a/README.md
+++ b/README.md
@@ -100,9 +100,13 @@ $ make gcc-debug-no-tests
## Building (Windows)
You'll need [CMake](https://cmake.org). You'll also need
-[Visual Studio](https://www.visualstudio.com/) (2015 or newer) or
+[Visual Studio](https://www.visualstudio.com/) (2015 or newer) or
[MinGW](http://www.mingw.org/).
+_Note: Visual Studio 2017 and later come with CMake (and the Ninja build system)
+out of the box, and should be on your PATH if you open a Developer Command prompt.
+See <https://aka.ms/cmake> for more details._
+
You can run CMake from the command prompt, or use the CMake GUI tool. See
[Running CMake](https://cmake.org/runningcmake/) for more information.
@@ -133,7 +137,7 @@ So, for example, if you want to build the debug configuration on Visual Studio 2
```console
> mkdir build
> cd build
-> cmake .. -DCMAKE_BUILD_TYPE=DEBUG -DCMAKE_INSTALL_PREFIX=..\bin -G "Visual Studio 14 2015"
+> cmake .. -DCMAKE_BUILD_TYPE=DEBUG -DCMAKE_INSTALL_PREFIX=..\ -G "Visual Studio 14 2015"
> cmake --build . --config DEBUG --target install
```