Advertisement
Guest User

Untitled

a guest
Nov 15th, 2018
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CMake 0.34 KB | None | 0 0
  1. cmake_minimum_required (VERSION 3.5.1)
  2. project (jetson_tx1_server)
  3.  
  4. find_package(PCL CONFIG REQUIRED COMPONENTS)
  5. include_directories(${PCL_INCLUDE_DIRS} )
  6. link_directories(${PCL_LIBRARY_DIRS})
  7. add_definitions(${PCL_DEFENITIONS})
  8.  
  9. add_executable(main main.cpp)
  10. target_link_libraries(main PUBLIC ${PCL_COMMON_LIBRARIES} ${PCL_IO_LIBRARIES})
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement