I've installed ROS Bare bone successfully and done `source setup.bash`.
Then I created my own work space and I put all of my source in it: `/home/me/workspace/src`.
I can compile it with the command: `catkin_make_isolated --install -DCMAKE_BUILD_TYPE=Release`.
Now I can see that there are three new directories under `/home/me/workspace`: `build_isolated`, `devel_isolated` and `install_isolated`. Everything works fine.
For now I want to specify another directory while compiling my project, so I try to execute the command:
catkin_make_isolated --install -DCMAKE_BUILD_TYPE=Release --install-space /home/me/another_workspace
However, I get nothing under `/home/me/another_workspace`, furthermore, I can't also get `install_isolated` anywhere, meaning that it seems `install_isolated` disappears.
↧