ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
Tom's fixed code is here http://pastebin.com/ebtxMGAD http://pastebin.com/ebtxMGAD . Paste these in the /src and /include directory of your laser_scan_matcher package. Also dont forget to modify your CMakelists.txt file. Add the following lines
add_library(laser_scan_matcher_odom src/laser_scan_matcher_odom.cpp)
target_link_libraries( laser_scan_matcher_odom ${catkin_LIBRARIES} ${csm_LIBRARIES}) add_dependencies(laser_scan_matcher_odom ${csm_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS})
add_executable(laser_scan_matcher_node src/laser_scan_matcher_node.cpp) target_link_libraries( laser_scan_matcher_node laser_scan_matcher_odom )
2 | No.2 Revision |
Tom's fixed code is here http://pastebin.com/ebtxMGAD http://pastebin.com/ebtxMGAD http://pastebin.com/hY5pFWsY . Paste these in the /src and /include directory of your laser_scan_matcher package. Also dont forget to modify your CMakelists.txt file. Add the following lines
add_library(laser_scan_matcher_odom src/laser_scan_matcher_odom.cpp)
target_link_libraries( laser_scan_matcher_odom ${catkin_LIBRARIES} ${csm_LIBRARIES}) add_dependencies(laser_scan_matcher_odom ${csm_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS})
add_executable(laser_scan_matcher_node src/laser_scan_matcher_node.cpp) target_link_libraries( laser_scan_matcher_node laser_scan_matcher_odom )
3 | No.3 Revision |
Tom's fixed code is here http://pastebin.com/ebtxMGAD http://pastebin.com/hY5pFWsY . Paste these in the /src and /include directory of your laser_scan_matcher package. Also dont forget to modify your CMakelists.txt file. Add the following lines
add_library(laser_scan_matcher_odom