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 10:25:41 +0300
committerRyan Dahl <ry@tinyclouds.org>2010-12-02 21:36:02 +0300
commitcf1811a6d3f19e8922fa205c77e216ce7981c5e3 (patch)
treec137b6d6e4c776240a8a3c2f201e70d6e34aea94 /Makefile.cmake
parentb46f10a11fbb5a8426c28e9113fff57cb7405958 (diff)
cmake: Add valgrind 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 ce34f8f8ecb..aaa3f6f258c 100644
--- a/Makefile.cmake
+++ b/Makefile.cmake
@@ -33,4 +33,7 @@ cdash: $(BUILD)/Makefile
cdash-cov: $(BUILD)/Makefile
cd $(BUILD) && $(CMAKE) -DUSE_GCOV=True .. && make Experimental
-.PHONY: build install clean doc package test cdash cdash-cov
+cdash-mem: $(BUILD)/Makefile
+ cd $(BUILD) && make NightlyMemoryCheck
+
+.PHONY: build install clean doc package test cdash cdash-cov cdash-mem