X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=common%2FCMakeLists.txt;h=ebe4dff285808e01b16ec47eef0df5c969723bd3;hb=6fa2cf3d8bd3e42e5103da3f04f12fc90c671bbd;hp=76e9179a825f4cf4905ff21dd9a73741270974bc;hpb=acd847ca23ec3c1213e9e97043d4f99445a25b6c;p=clitk.git diff --git a/common/CMakeLists.txt b/common/CMakeLists.txt index 76e9179..ebe4dff 100644 --- a/common/CMakeLists.txt +++ b/common/CMakeLists.txt @@ -27,13 +27,23 @@ SET(clitkCommon_SRC clitkDicomRTDoseIO.cxx clitkDicomRTDoseIOFactory.cxx clitkOrientation.cxx - vvImage.cxx clitkImageToImageGenericFilterBase.cxx + clitkExceptionObject.cxx clitkFilterBase.cxx -) + clitkMemoryUsage.cxx + vvImage.cxx + vvImageReader.cxx + vvImageWriter.cxx +) +### Declare clitkCommon library ADD_LIBRARY(clitkCommon STATIC ${clitkCommon_SRC}) -TARGET_LINK_LIBRARIES(clitkCommon vtkCommon vtkImaging vtkHybrid ITKBasicFilters) + +IF(NOT ${LIBSTATGRAB} MATCHES "LIBSTATGRAB-NOTFOUND") + TARGET_LINK_LIBRARIES(clitkCommon statgrab) +ENDIF(NOT ${LIBSTATGRAB} MATCHES "LIBSTATGRAB-NOTFOUND") + +TARGET_LINK_LIBRARIES(clitkCommon vtkCommon vtkImaging ${ITK_LIBRARIES}) ADD_LIBRARY(clitkDicomRTStruct STATIC clitkDicomRT_Contour.cxx @@ -42,5 +52,13 @@ ADD_LIBRARY(clitkDicomRTStruct STATIC clitkDicomRT_ROI_ConvertToImageFilter.cxx ) +TARGET_LINK_LIBRARIES(clitkDicomRTStruct vtkHybrid) + #ADD_LIBRARY(clitkCommonShared SHARED ${clitkCommon_SRC}) #SET_TARGET_PROPERTIES(clitkCommonShared PROPERTIES COMPILE_FLAGS -fPIC) + +#passing environnment variable +configure_file ( + globals.h.in + globals.h +)