diff options
author | Peter Hutterer <peter.hutterer@who-t.net> | 2017-05-03 13:34:48 +1000 |
---|---|---|
committer | Peter Hutterer <peter.hutterer@who-t.net> | 2017-05-03 21:00:36 +1000 |
commit | 276d342ebaf859dd53e145ead3e98e2cebb360ab (patch) | |
tree | b1fc9f5e62bd4a53a2eea9ee9f9b37a3fab805c1 /docs/markdown/Using-with-Visual-Studio.md | |
parent | 7ec6e6df2013aa65f99e0183c9d36b3ef3b7ab0e (diff) | |
download | meson-276d342ebaf859dd53e145ead3e98e2cebb360ab.zip meson-276d342ebaf859dd53e145ead3e98e2cebb360ab.tar.gz meson-276d342ebaf859dd53e145ead3e98e2cebb360ab.tar.bz2 |
docs: replace 'meson build' with 'meson builddir'
Clarifies that this is really just a directory, not a command.
https://github.com/mesonbuild/meson/issues/1560
Diffstat (limited to 'docs/markdown/Using-with-Visual-Studio.md')
-rw-r--r-- | docs/markdown/Using-with-Visual-Studio.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/markdown/Using-with-Visual-Studio.md b/docs/markdown/Using-with-Visual-Studio.md index 2768ea4..339fda3 100644 --- a/docs/markdown/Using-with-Visual-Studio.md +++ b/docs/markdown/Using-with-Visual-Studio.md @@ -8,8 +8,8 @@ In order to generate Visual Studio projects, Meson needs to know the settings of 1. Click on start menu and select "Visual Studio 2015 Command Prompt" 1. cd into your source directory -1. mkdir build -1. python3 path/to/meson.py build --backend vs2015 +1. mkdir builddir +1. python3 path/to/meson.py builddir --backend vs2015 If you wish to use the Ninja backend instead of vs2015, pass `--backend ninja`. At the time of writing the Ninja backend is more mature than the VS backend so you might want to use it for serious work. |