summaryrefslogtreecommitdiff
path: root/docs/markdown/Using-multiple-build-directories.md
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2017-05-03 13:34:48 +1000
committerPeter Hutterer <peter.hutterer@who-t.net>2017-05-03 21:00:36 +1000
commit276d342ebaf859dd53e145ead3e98e2cebb360ab (patch)
treeb1fc9f5e62bd4a53a2eea9ee9f9b37a3fab805c1 /docs/markdown/Using-multiple-build-directories.md
parent7ec6e6df2013aa65f99e0183c9d36b3ef3b7ab0e (diff)
downloadmeson-276d342ebaf859dd53e145ead3e98e2cebb360ab.tar.gz
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-multiple-build-directories.md')
-rw-r--r--docs/markdown/Using-multiple-build-directories.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/markdown/Using-multiple-build-directories.md b/docs/markdown/Using-multiple-build-directories.md
index f9e3e0989..ac67f8418 100644
--- a/docs/markdown/Using-multiple-build-directories.md
+++ b/docs/markdown/Using-multiple-build-directories.md
@@ -14,8 +14,8 @@ Since a build directory is fully self contained and treats the source tree as a
The first thing to do is to set up the default build, that is, the one we are going to use over 90% of the time. In this we use the system compiler and build with debug enabled and no optimizations so it builds as fast as possible. This is the default project type for Meson, so setting it up is simple.
- mkdir build
- meson build
+ mkdir builddir
+ meson builddir
Another common setup is to build with debug and optimizations to, for example, run performance tests. Setting this up is just as simple.