aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown/Feature-autodetection.md
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2019-04-24 23:18:18 +0300
committerGitHub <noreply@github.com>2019-04-24 23:18:18 +0300
commit25931abb262d2e19d43c8b557df02f1e29857440 (patch)
tree37864769adec5c944ed2cbf61bd9c575044cb317 /docs/markdown/Feature-autodetection.md
parent8018ef6ac6dead04f9a9f37bed3b47237b90ebad (diff)
parentccaa61ec52b97e1cbd8cd0f8986f005ae648a3ba (diff)
downloadmeson-25931abb262d2e19d43c8b557df02f1e29857440.zip
meson-25931abb262d2e19d43c8b557df02f1e29857440.tar.gz
meson-25931abb262d2e19d43c8b557df02f1e29857440.tar.bz2
Merge pull request #5319 from kjerstadius/gcovr-4.2
Gcovr 4.2
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.