aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorliberforce <liberforce@freeside.fr>2017-05-10 17:26:57 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2017-05-11 00:14:17 +0300
commitad6c61dcf5afebd6ee5aae0d29b4ef39f976a2e5 (patch)
tree99f84ef2d107916d79b3dd86cd15d7918e819347 /docs
parent6dc54b86b6f4ef5feb5af796a1eb3c7cadeb7756 (diff)
downloadmeson-ad6c61dcf5afebd6ee5aae0d29b4ef39f976a2e5.zip
meson-ad6c61dcf5afebd6ee5aae0d29b4ef39f976a2e5.tar.gz
meson-ad6c61dcf5afebd6ee5aae0d29b4ef39f976a2e5.tar.bz2
Update Running-Meson.md
Fix parameter escapement
Diffstat (limited to 'docs')
-rw-r--r--docs/markdown/Running-Meson.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/markdown/Running-Meson.md b/docs/markdown/Running-Meson.md
index 2dbb755..0e8da43 100644
--- a/docs/markdown/Running-Meson.md
+++ b/docs/markdown/Running-Meson.md
@@ -58,7 +58,7 @@ If you are not using an IDE, Meson uses the [Ninja build system](https://ninja-b
ninja
-The main usability difference between Ninja and Make is that Ninja will automatically detect the number of CPUs in your computer and parallelize itself accordingly. You can override the amount of parallel processes used with the command line argument `-j &lt;num processes&gt;`.
+The main usability difference between Ninja and Make is that Ninja will automatically detect the number of CPUs in your computer and parallelize itself accordingly. You can override the amount of parallel processes used with the command line argument `-j <num processes>`.
It should be noted that after the initial configure step `ninja` is the only command you ever need to type to compile. No matter how you alter your source tree (short of moving it to a completely new location), Meson will detect the changes and regenerate itself accordingly. This is especially handy if you have multiple build directories. Often one of them is used for development (the "debug" build) and others only every now and then (such as a "static analysis" build). Any configuration can be built just by `cd`'ing to the corresponding directory and running Ninja.