X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;ds=sidebyside;f=CMakeLists.txt;h=694d7b62f125c920577d8b3e9fd825746a9adefd;hb=55225641fb149bc6d4da4f5a910a66083c8af3cd;hp=b3ecc996bf5eae1b49c91f0a1cbcd6dd25f8fd36;hpb=2368cbc03789119dd0b3ed2ab17e56e464ee0100;p=clitk.git diff --git a/CMakeLists.txt b/CMakeLists.txt index b3ecc99..694d7b6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -61,30 +61,23 @@ INCLUDE_DIRECTORIES(itk filters segmentation registration tools ${PROJECT_BINARY # Select what is compiled ADD_SUBDIRECTORY(common) -ADD_SUBDIRECTORY(filters) +add_subdirectory(tools) +add_subdirectory(segmentation) # Compilation options OPTION(CLITK_EXPERIMENTAL "Enable experimental software and features" OFF) - -OPTION(CLITK_BUILD_VV "Build vv the 4D visualizer (requires VTK and QT)" ON) -IF (CLITK_BUILD_VV) - add_subdirectory(vv) -ENDIF(CLITK_BUILD_VV) - OPTION(CLITK_BUILD_TOOLS "Build command-line tools" OFF) -IF (CLITK_BUILD_TOOLS) - add_subdirectory(tools) -ENDIF(CLITK_BUILD_TOOLS) - -OPTION(CLITK_BUILD_SEGMENTATION "Build segmentation tools" ON) -IF (CLITK_BUILD_SEGMENTATION) - add_subdirectory(segmentation) -ENDIF (CLITK_BUILD_SEGMENTATION) +OPTION(CLITK_BUILD_SEGMENTATION "Build segmentation tools" OFF) OPTION(CLITK_BUILD_REGISTRATION "Build command-line registration tools" OFF) IF (CLITK_BUILD_REGISTRATION) add_subdirectory(registration) ENDIF(CLITK_BUILD_REGISTRATION) +OPTION(CLITK_BUILD_VV "Build vv the 4D visualizer (requires VTK and QT)" ON) +IF (CLITK_BUILD_VV) + add_subdirectory(vv) +ENDIF(CLITK_BUILD_VV) + #=========================================================