diff options
author | Bill Ticehurst <billti@microsoft.com> | 2019-05-16 20:07:39 -0700 |
---|---|---|
committer | Ben Smith <binji@chromium.org> | 2019-05-16 20:07:39 -0700 |
commit | ca758dcb15eca9894f555456c3e36e55df81dadd (patch) | |
tree | 88c6367cf1cf696ebf2c04b239366eba056f287e /README.md | |
parent | 66cb491d3ecd8f0ea438fd90033112330117729b (diff) | |
download | wabt-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.md | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -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 ``` |