ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
Some time ago i has the same problem, but on ros fuerte version with rosbuild, maybe the solution still working my solution consist on add: <rosdep name="ncurses++"/> to the manifest and on the CMakeLists something like that /////////////// find_package( PkgConfig REQUIRED ) pkg_check_modules ( ncurses++ REQUIRED ncurses++ )
rosbuild_add_executable(vant
src/....cpp
src/....cpp
)
rosbuild_genmsg ()
target_link_libraries ( vant ${ncurses++_LIBRARIES}) //// sorry for my english.
2 | No.2 Revision |
Some time ago i has the same problem, but on ros fuerte version with rosbuild, maybe the solution still working
my solution consist on add:
<rosdep
name="ncurses++"/> name="ncurses++"/> to the manifest
and on the CMakeLists something like that
///////////////
that
find_package( PkgConfig REQUIRED )
pkg_check_modules ( ncurses++ REQUIRED ncurses++ ))
rosbuild_add_executable(vant
src/....cpp
src/....cpp
)
rosbuild_genmsg ()()
target_link_libraries ( vant ${ncurses++_LIBRARIES})
////
sorry for my english.