]> Creatis software - clitk.git/commitdiff
Fixed bugs in libstatgrab
authorsrit <srit>
Mon, 21 Mar 2011 17:45:11 +0000 (17:45 +0000)
committersrit <srit>
Mon, 21 Mar 2011 17:45:11 +0000 (17:45 +0000)
CMakeLists.txt

index 563db003a99f5d6111703fda6b9fe480b7b18b20..0becec0cc565972e71d1c1089fe252cab7053c65 100644 (file)
@@ -45,9 +45,12 @@ ENDIF (CLITK_GENGETOPT STREQUAL "CLITK_GENGETOPT-NOTFOUND")
 
 #=========================================================
 # Find libstatgrab is installed, add clitkMemoryUsage.cxx in the library
-FIND_PROGRAM(LIBSTATGRAB NAMES statgrab PATHS)
+FIND_LIBRARY(LIBSTATGRAB NAMES statgrab PATHS)
 IF (${LIBSTATGRAB} MATCHES "LIBSTATGRAB-NOTFOUND")
   MESSAGE("Install libstatgrab (http://www.i-scream.org/libstatgrab/) for memory usage information")
+  SET(CLITK_MEMORY_INFO OFF)
+ELSE (${LIBSTATGRAB} MATCHES "LIBSTATGRAB-NOTFOUND")
+  SET(CLITK_MEMORY_INFO ON)
 ENDIF (${LIBSTATGRAB} MATCHES "LIBSTATGRAB-NOTFOUND")  
 #=========================================================