diff options
Diffstat (limited to 'docs/markdown/Using-multiple-build-directories.md')
-rw-r--r-- | docs/markdown/Using-multiple-build-directories.md | 4 |
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. |