Skip to content

Instantly share code, notes, and snippets.

@kentsommer
Created August 21, 2017 03:56
Show Gist options
  • Save kentsommer/ac364da2414a5480837641a0f63f739b to your computer and use it in GitHub Desktop.
Save kentsommer/ac364da2414a5480837641a0f63f739b to your computer and use it in GitHub Desktop.
extract build
cmake_minimum_required(VERSION 2.6 FATAL_ERROR)
project(TABLETOP_EXTRACTION)
find_package(PCL REQUIRED)
include_directories(${PCL_INCLUDE_DIRS})
link_directories(${PCL_LIBRARY_DIRS})
add_definitions(${PCL_DEFINITIONS})
add_executable(extract extract.cpp)
target_link_libraries(extract ${PCL_LIBRARIES})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment