From: dsarrut Date: Mon, 19 Apr 2010 07:12:44 +0000 (+0000) Subject: - add future folder dedicated to segmentation (dicom RT ...) X-Git-Tag: v1.2.0~718 X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=commitdiff_plain;h=f212801604d217111cab7c0557533f114a87ca56;p=clitk.git - add future folder dedicated to segmentation (dicom RT ...) --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 9baa7e1..a44f673 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -69,6 +69,7 @@ ENDIF(PROJECT_BINARY_DIR STREQUAL ${PROJECT_SOURCE_DIR}) OPTION(CLITK_BUILD_VV "Build vv the 4D visualizer (requires VTK and QT)" ON) OPTION(CLITK_BUILD_TOOLS "Build command-line tools" OFF) OPTION(CLITK_EXPERIMENTAL "Enable experimental software and features" OFF) +OPTION(CLITK_BUILD_SEGMENTATION "Build segmentation tools" OFF) #========================================================= include_directories(itk filters ${PROJECT_BINARY_DIR}) @@ -85,4 +86,8 @@ IF (CLITK_BUILD_TOOLS) add_subdirectory(tools) ENDIF(CLITK_BUILD_TOOLS) +IF (CLITK_BUILD_SEGMENTATION) + add_subdirectory(segmentation) +ENDIF (CLITK_BUILD_SEGMENTATION) + #=========================================================