Advertisement
Guest User

Untitled

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