Edit: mkdir cb_ws
cd cb_ws
git clone https://github.com/ros/console_bridge
cd cb_ws
mkdir build
cd build
cmake -CMAKE_INSTALL_PREFIX=../install ../console_bridge
make install
From the wiki (http://www.ros.org/wiki/console_bridge) the build instructions hint at some possible corrections but please review and correct as needed:
Edit: mkdir cb_ws
cd cb_ws
git clone https://github.com/ros/console_bridge (from the wiki should there be a .git at the end here)??
cd cb_ws (from the wiki should this be cd console_bridge)??
mkdir build (Here you use build but below you speak of install. Should we mkdir install instead of build)??
cd build
cmake -CMAKE_INSTALL_PREFIX=../install ../console_bridge (I've tried this line with the directory above as build and install and this cmake throws errors)??
make install (I never get this far because the cmake above fails)
I would appreciate any edits here to clear this up.
On answers.ros.org and this post (http://answers.ros.org/question/62215/where-to-install-console_bridge/) there are errors in the instructions:
Edit: mkdir cb_ws cd cb_ws git clone https://github.com/ros/console_bridge cd cb_ws mkdir build cd build cmake -CMAKE_INSTALL_PREFIX=../install ../console_bridge make install
From the wiki (http://www.ros.org/wiki/console_bridge) the build instructions hint at some possible corrections but please review and correct as needed:
Edit: mkdir cb_ws cd cb_ws git clone https://github.com/ros/console_bridge (from the wiki should there be a .git at the end here)?? cd cb_ws (from the wiki should this be cd console_bridge)?? mkdir build (Here you use build but below you speak of install. Should we mkdir install instead of build)?? cd build cmake -CMAKE_INSTALL_PREFIX=../install ../console_bridge (I've tried this line with the directory above as build and install and this cmake throws errors)?? make install (I never get this far because the cmake above fails)
I would appreciate any edits here to clear this up.