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

Remove obsolete lazy_ndt_mapping #1886

Merged
merged 2 commits into from
Jan 15, 2019
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -95,10 +95,6 @@ add_executable(approximate_ndt_mapping nodes/approximate_ndt_mapping/approximate
target_link_libraries(approximate_ndt_mapping ${catkin_LIBRARIES})
add_dependencies(approximate_ndt_mapping ${catkin_EXPORTED_TARGETS})

add_executable(lazy_ndt_mapping nodes/lazy_ndt_mapping/lazy_ndt_mapping.cpp)
target_link_libraries(lazy_ndt_mapping ${catkin_LIBRARIES})
add_dependencies(lazy_ndt_mapping ${catkin_EXPORTED_TARGETS})

add_executable(queue_counter nodes/queue_counter/queue_counter.cpp)
target_link_libraries(queue_counter ${catkin_LIBRARIES})
add_dependencies(queue_counter ${catkin_EXPORTED_TARGETS})
Expand Down Expand Up @@ -144,7 +140,7 @@ install(TARGETS ndt_matching_tku ndt_mapping_tku ndt_mapping_tku ndt_matching_mo
RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
)

install(TARGETS ndt_matching ndt_mapping approximate_ndt_mapping lazy_ndt_mapping queue_counter
install(TARGETS ndt_matching ndt_mapping approximate_ndt_mapping queue_counter
ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@
- name: ndt_mapping
publish: [/ndt_map, /current_pose]
subscribe: [/config/ndt_mapping, /config/ndt_mapping_output, /points_raw]
- name: lazy_ndt_mapping
publish: [/ndt_map, /reference_map, /current_pose]
subscribe: [/config/ndt_mapping, /config/ndt_mapping_output, /points_raw]
- name: queue_counter
publish: []
subscribe: [/points_raw, /ndt_map]
Expand Down

This file was deleted.

Loading