# This project should be built within the ITK source tree PROJECT(ConnectedThresholdSegmentation) # Find ITK FIND_PACKAGE(ITK REQUIRED) IF(ITK_FOUND) INCLUDE(${ITK_USE_FILE}) ENDIF(ITK_FOUND) ADD_EXECUTABLE(ConnectedThreshold ConnectedThreshold.cxx) TARGET_LINK_LIBRARIES(ConnectedThreshold ITKCommon ITKIO)