ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
Change the lines with these, and make sure they are in the same order as shown.
rosbuild_add_executable (${BINNAME} ${SRCS}) target_link_libraries(${BINNAME}/pathto/libue9.so)
replace pathto with the full path to your libue9.so library file
give it a try and let me know if it works for u.
2 | for target_link_libraries, there should be a space after ${BINNAME} |
Change the lines with these, and make sure they are in the same order as shown.
rosbuild_add_executable (${BINNAME} ${SRCS})
target_link_libraries(${BINNAME}/pathto/libue9.so)target_link_libraries(${BINNAME} /pathto/libue9.so)
replace pathto with the full path to your libue9.so library file
give it a try and let me know if it works for u.
3 | No.3 Revision |
Change the lines with these, and make sure they are in the same order as shown.
rosbuild_add_executable (${BINNAME} ${SRCS})
${SRCS})
target_link_libraries(${BINNAME} /pathto/libue9.so)
replace pathto with the full path to your libue9.so library file
give it a try and let me know if it works for u.