]> Creatis software - clitk.git/blob - cmake/dependencies.cmake
Remove libstatgrab dependency by default
[clitk.git] / cmake / dependencies.cmake
1 #=========================================================
2 # Find ITK (required)
3 find_package(ITK)
4 if(ITK_FOUND)
5   include("${ITK_USE_FILE}")
6 else(ITK_FOUND)
7   message(FATAL_ERROR "Cannot build without ITK.  Please set ITK_DIR.")
8 endif(ITK_FOUND)
9 #=========================================================
10
11 #=========================================================
12 # Find VTK (required)
13 find_package(VTK REQUIRED)
14 if(VTK_FOUND)
15   include("${VTK_USE_FILE}")
16   if(VTK_VERSION VERSION_LESS 5.8.0)
17     set( VTK_LIBRARIES
18       vtkCommon
19       vtkRendering
20       vtkIO
21       vtkFiltering
22       vtkGraphics
23       vtkWidgets
24       vtkImaging
25       vtkHybrid
26       )
27   endif(VTK_VERSION VERSION_LESS 5.8.0)
28   if(VTK_VERSION VERSION_LESS 5.6.0)
29     set( VTK_LIBRARIES
30       ${VTK_LIBRARIES}
31       vtkQVTK
32     )
33   endif(VTK_VERSION VERSION_LESS 5.6.0)
34 else(VTK_FOUND)
35   message(FATAL_ERROR "Please set VTK_DIR.")
36 endif(VTK_FOUND)
37 #=========================================================
38
39 #=========================================================
40 # Find gengetopt, will create a target exe if not found
41 set(CMAKE_MODULE_PATH "${CLITK_SOURCE_DIR}/cmake" ${CMAKE_MODULE_PATH})
42 find_package(Gengetopt)
43 #=========================================================
44
45 #=========================================================
46 # Find libstatgrab is installed, add clitkMemoryUsage.cxx in the library
47 #if(NOT DEFINED CLITK_MEMORY_INFO OR CLITK_MEMORY_INFO)
48 #  find_library(LIBSTATGRAB NAMES statgrab PATHS)
49 #  if(${LIBSTATGRAB} MATCHES "LIBSTATGRAB-NOTFOUND")
50 #  message("Install libstatgrab (http://www.i-scream.org/libstatgrab/) for memory usage information")
51     set(CLITK_MEMORY_INFO OFF)
52 #  else(${LIBSTATGRAB} MATCHES "LIBSTATGRAB-NOTFOUND")
53 #    set(CLITK_MEMORY_INFO ON)
54 #  endif(${LIBSTATGRAB} MATCHES "LIBSTATGRAB-NOTFOUND")
55 #endif()
56 #=========================================================
57
58
59 #=========================================================
60 ### Check if ITK was compiled with SYSTEM_GDCM = ON
61 set(CLITK_USE_SYSTEM_GDCM FALSE)
62 # ITK4 creates a target for each gdcm library when it compiles GDCM
63 get_target_property(GDCMDICTTARG gdcmDICT TYPE )
64 if(NOT GDCMDICTTARG)
65   set(CLITK_USE_SYSTEM_GDCM TRUE)
66 endif()
67
68