Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Hughes <tom.hughes@palm.com>2010-11-24 09:34:50 +0300
committerRyan Dahl <ry@tinyclouds.org>2010-12-02 21:35:39 +0300
commitb46f10a11fbb5a8426c28e9113fff57cb7405958 (patch)
tree6e68912aefc9774d3e3df42b7caf14f5ea749661 /Makefile.cmake
parenta1138c6f2ae1c8840caeea37526626b1c3f6f1a5 (diff)
cmake: Add coverage support.
Diffstat (limited to 'Makefile.cmake')
-rw-r--r--Makefile.cmake5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile.cmake b/Makefile.cmake
index d2a357756cc..ce34f8f8ecb 100644
--- a/Makefile.cmake
+++ b/Makefile.cmake
@@ -30,4 +30,7 @@ test: $(BUILD)/Makefile
cdash: $(BUILD)/Makefile
cd $(BUILD) && make Experimental
-.PHONY: build install clean doc package test cdash
+cdash-cov: $(BUILD)/Makefile
+ cd $(BUILD) && $(CMAKE) -DUSE_GCOV=True .. && make Experimental
+
+.PHONY: build install clean doc package test cdash cdash-cov