#Find the VTK-m package
cmake_minimum_required(VERSION 3.3 FATAL_ERROR)
project(PointMerge CXX)

#Find the VTK-m package
find_package(VTKm REQUIRED QUIET)

add_executable(mesh SurfaceData.cxx)
target_link_libraries(mesh PRIVATE vtkm_cont)

add_executable(cluster Simplification.cxx)
target_link_libraries(cluster PRIVATE vtkm_cont)
