cmake_minimum_required(VERSION 3.5)
project(pcl_sample)

find_package(PCL 1.10 REQUIRED)

include_directories(${PCL_INCLUDE_DIRS})
link_directories(${PCL_LIBRARY_DIRS})
add_definitions(${PCL_DEFINITIONS})

add_executable (pcl_sample pcl_sample.cpp)
target_link_libraries (pcl_sample ${PCL_LIBRARIES})

add_executable (pcl_ndt pcl_ndt.cpp)
target_link_libraries (pcl_ndt ${PCL_LIBRARIES})
