blob: 29dde6d07316e6dc6a33453b6d0f0e1482095499 [file] [log] [blame]
cmake_minimum_required(VERSION 2.8 FATAL_ERROR)
project(pclBox)
find_package(PCL 1.2 REQUIRED)
include_directories(${PCL_INCLUDE_DIRS})
link_directories(${PCL_LIBRARY_DIRS})
add_definitions(${PCL_DEFINITIONS})
add_executable (pclBox pclBox.cpp)
target_link_libraries (pclBox ${PCL_LIBRARIES})