Template:ITKCMakeLists
From KitwarePublic
CMakeLists.txt
<syntaxhighlight lang="cmake"> cmake_minimum_required(VERSION 2.8)
project({{{1}}})
find_package(ITK REQUIRED) include(${ITK_USE_FILE})
add_executable({{{1}}} {{{1}}}.cxx)
if( "${ITK_VERSION_MAJOR}" LESS 4 )
target_link_libraries({{{1}}} ITKReview ${ITK_LIBRARIES})
else( "${ITK_VERSION_MAJOR}" LESS 4 )
target_link_libraries({{{1}}} ${ITK_LIBRARIES})
endif( "${ITK_VERSION_MAJOR}" LESS 4 )
</syntaxhighlight>