cmake_minimum_required(VERSION 2.8)

project(ShapeFeatures)

# Find ITK.
find_package(ITK REQUIRED)
include(${ITK_USE_FILE})

add_executable(MatchHistogram MatchHistogram.cxx )
target_link_libraries(MatchHistogram  ${ITK_LIBRARIES})

