]> Creatis software - clitk.git/blob - common/CMakeLists.txt
add option to display memory usage if statgrab is installed
[clitk.git] / common / CMakeLists.txt
1 #=========================================================
2 INCLUDE(${PROJECT_SOURCE_DIR}/cmake/common.cmake)
3 #=========================================================
4
5 #=========================================================
6 # make clitk libraries*
7 CONFIGURE_FILE(clitkConfiguration.h.in ${PROJECT_BINARY_DIR}/clitkConfiguration.h)
8
9 SET(clitkCommon_SRC
10   clitkCommon.cxx 
11   clitkListOfPair.cxx
12   clitkTimer.cxx
13   clitkImageCommon.cxx
14   clitkTransformUtilities.cxx
15   clitkIO.cxx
16   clitkVoxImageIO.cxx  
17   clitkVoxImageIOFactory.cxx
18   clitkVfImageIO.cxx  
19   clitkVfImageIOFactory.cxx
20   clitkHisImageIO.cxx  
21   clitkHisImageIOFactory.cxx
22   clitkXdrImageIOReader.cxx  
23   clitkXdrImageIOWriter.cxx  
24   clitkXdrImageIOFactory.cxx
25   clitkHndImageIO.cxx
26   clitkHndImageIOFactory.cxx
27   clitkDicomRTDoseIO.cxx
28   clitkDicomRTDoseIOFactory.cxx
29   clitkOrientation.cxx
30   vvImage.cxx
31   clitkImageToImageGenericFilterBase.cxx
32   clitkExceptionObject.cxx
33   clitkFilterBase.cxx
34 )  
35
36 ### if LIBSTATGRAB is installed, add clitkMemoryUsage.cxx in the library
37 IF(CLITK_MEMORY_INFO)
38   FIND_PROGRAM(LIBSTATGRAB NAMES statgrab PATHS)
39   IF (${LIBSTATGRAB} MATCHES "LIBSTATGRAB-NOTFOUND")
40     MESSAGE( FATAL_ERROR "libstatgrab NOT FOUND -> please install http://www.i-scream.org/libstatgrab/")
41   ELSE (${LIBSTATGRAB} MATCHES "LIBSTATGRAB-NOTFOUND")
42     SET(clitkCommon_SRC ${clitkCommon_SRC} clitkMemoryUsage.cxx)
43   ENDIF (${LIBSTATGRAB} MATCHES "LIBSTATGRAB-NOTFOUND")  
44 ENDIF(CLITK_MEMORY_INFO)
45
46 ### Declare clitkCommon library
47 ADD_LIBRARY(clitkCommon STATIC ${clitkCommon_SRC})
48
49 ### Add libstatgrab if needed
50 IF(CLITK_MEMORY_INFO)
51     TARGET_LINK_LIBRARIES(clitkCommon statgrab)
52 ENDIF(CLITK_MEMORY_INFO)
53
54 TARGET_LINK_LIBRARIES(clitkCommon vtkCommon vtkImaging vtkHybrid ITKBasicFilters)
55
56 ADD_LIBRARY(clitkDicomRTStruct STATIC
57   clitkDicomRT_Contour.cxx
58   clitkDicomRT_ROI.cxx
59   clitkDicomRT_StructureSet.cxx
60   clitkDicomRT_ROI_ConvertToImageFilter.cxx
61 )
62
63 #ADD_LIBRARY(clitkCommonShared SHARED ${clitkCommon_SRC})
64 #SET_TARGET_PROPERTIES(clitkCommonShared PROPERTIES COMPILE_FLAGS -fPIC)