]> Creatis software - clitk.git/commitdiff
Remove libstatgrab dependency by default
authortbaudier <thomas.baudier@creatis.insa-lyon.fr>
Fri, 25 Nov 2016 12:12:22 +0000 (13:12 +0100)
committertbaudier <thomas.baudier@creatis.insa-lyon.fr>
Fri, 25 Nov 2016 12:12:22 +0000 (13:12 +0100)
cmake/dependencies.cmake

index a871fecd0d19523b2fa28823856adcf5637c32ed..bdd63163dd9f99822bef2e5d4743d0817d840f3e 100644 (file)
@@ -44,15 +44,15 @@ find_package(Gengetopt)
 
 #=========================================================
 # Find libstatgrab is installed, add clitkMemoryUsage.cxx in the library
-if(NOT DEFINED CLITK_MEMORY_INFO OR CLITK_MEMORY_INFO)
-  find_library(LIBSTATGRAB NAMES statgrab PATHS)
-  if(${LIBSTATGRAB} MATCHES "LIBSTATGRAB-NOTFOUND")
+#if(NOT DEFINED CLITK_MEMORY_INFO OR CLITK_MEMORY_INFO)
+#  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")
-endif()
+#  else(${LIBSTATGRAB} MATCHES "LIBSTATGRAB-NOTFOUND")
+#    set(CLITK_MEMORY_INFO ON)
+#  endif(${LIBSTATGRAB} MATCHES "LIBSTATGRAB-NOTFOUND")
+#endif()
 #=========================================================