Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Voronoi grid #10

Draft
wants to merge 4 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions cone_detection_lidar/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,11 @@ target_link_libraries(grid_trajectory ${PCL_LIBRARIES})
ament_target_dependencies(grid_trajectory ${ament_dependencies} )
target_compile_features(grid_trajectory PUBLIC c_std_99 cxx_std_17) # Require C99 and C++17

add_executable(voronoi_grid src/voronoi_grid.cpp)
target_link_libraries(voronoi_grid ${PCL_LIBRARIES})
ament_target_dependencies(voronoi_grid ${ament_dependencies} )
target_compile_features(voronoi_grid PUBLIC c_std_99 cxx_std_17) # Require C99 and C++17

install(DIRECTORY
launch
config
Expand All @@ -71,6 +76,7 @@ install(DIRECTORY
install(TARGETS
detection_simple
grid_trajectory
voronoi_grid
DESTINATION lib/${PROJECT_NAME})

if(BUILD_TESTING)
Expand Down
Loading