This is an automated email from the ASF dual-hosted git repository.
dbarnes pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode-native.git
The following commit(s) were added to refs/heads/develop by this push:
new 8e4eede GEODE-5381: Fixed variable name for code coverage in
BUILDIND.md (#310)
8e4eede is described below
commit 8e4eede5ca6241372a99dbf0d724a9017b28ff3f
Author: Michael Martell <[email protected]>
AuthorDate: Fri Jul 6 14:14:16 2018 -0700
GEODE-5381: Fixed variable name for code coverage in BUILDIND.md (#310)
---
BUILDING.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/BUILDING.md b/BUILDING.md
index 0fb135c..05e808e 100644
--- a/BUILDING.md
+++ b/BUILDING.md
@@ -66,9 +66,9 @@ For faster builds, use optional parallelism parameters in the
last build step:
### Code Coverage
-If building with GCC or Clang you can enable C++ code coverage by adding
`-DUSE_CODE_COVERAGE=ON` to the CMake [Generator](#generator) command.
+If building with GCC or Clang you can enable C++ code coverage by adding
`-DUSE_CPP_COVERAGE=ON` to the CMake [Generator](#generator) command.
- $ cmake ... -DUSE_CODE_COVERAGE=ON ...
+ $ cmake ... -DUSE_CPP_COVERAGE=ON ...
You can then generate a C++ code coverage report by downloading
[lcov](http://ltp.sourceforge.net/coverage/lcov.php). After acquiring lcov,
finish the [Steps to build](#Steps-to-build) section above. Then, run the
tests as described in the [CONTRIBUTING.md](CONTRIBUTING.md). Finally, run the
following commands from the `build` directory: