aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown/Feature-autodetection.md
diff options
context:
space:
mode:
authorRichard Kjerstadius <kjerstadius@gmail.com>2019-04-24 20:22:19 +0200
committerRichard Kjerstadius <kjerstadius@gmail.com>2019-04-24 20:32:19 +0200
commitccaa61ec52b97e1cbd8cd0f8986f005ae648a3ba (patch)
treed1f7f27c9114d43bdd7434bd15fa8caa3f04b1f8 /docs/markdown/Feature-autodetection.md
parent48ee6a6148190cda71ab69f4417e2df0cc77596b (diff)
downloadmeson-ccaa61ec52b97e1cbd8cd0f8986f005ae648a3ba.zip
meson-ccaa61ec52b97e1cbd8cd0f8986f005ae648a3ba.tar.gz
meson-ccaa61ec52b97e1cbd8cd0f8986f005ae648a3ba.tar.bz2
doc: Update coverage related documentation
Diffstat (limited to 'docs/markdown/Feature-autodetection.md')
-rw-r--r--docs/markdown/Feature-autodetection.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/markdown/Feature-autodetection.md b/docs/markdown/Feature-autodetection.md
index f865174..9ee2e3e 100644
--- a/docs/markdown/Feature-autodetection.md
+++ b/docs/markdown/Feature-autodetection.md
@@ -16,4 +16,4 @@ If you do not wish to use CCache for some reason, just specify your compiler wit
Coverage
--
-When doing a code coverage build, Meson will check the existence of binaries `gcovr`, `lcov` and `genhtml`. If the first one is found, it will create targets called *coverage-text* and *coverage-xml*. If the latter two or a new enough `gcovr` is found, it generates the target *coverage-html*. You can then generate coverage reports just by calling e.g. `ninja coverage-xml`.
+When doing a code coverage build, Meson will check for existence of the binaries `gcovr`, `lcov` and `genhtml`. If version 3.3 or higher of the first is found, targets called *coverage-text*, *coverage-xml* and *coverage-html* are generated. Alternatively, if the latter two are found, only the target *coverage-html* is generated. Coverage reports can then be produced simply by calling e.g. `ninja coverage-xml`. As a convenience, a high-level *coverage* target is also generated which will produce all 3 coverage report types, if possible.