eclipse calling make, not rosmake
By following wiki, my eclipse works almost perfect with ROS, after running "make eclipse-project
". Only thing is I had to add the following modification in order to run rosmake
from eclipse' build feature (w/o adding make target
or else). Am I missing something?
On eclipse project's Properties, C/C++ Make Project
--> Make Builder
tab
- Change
Build command
from /usr/bin/make to/opt/ros/fuerte/bin/rosmake
- Delete
Build (Increment Build)
value that is initially setall
I still want to avoid the workaround above because I have to "make clean
" often for a certain reason (uploading to versioning server is primary one), which resets this config. My colleague is experiencing the same phenomenon (and the workaround above actually came out from him, which is ok but still makes things tedious in a middle/long run).
Environment: Ubuntu 10.04, Eclipse Indigo SP2
What exactly is your question? I'm not sure I understood your problem, it seems to work fine?
@Felix Kaser I updated my question. I'm wondering if there's a solution that doesn't require any additional action after "
make eclipse-project
".Ah ok that makes much more sense now. Thanks! I guess you could adapt the make eclipse-project to include the project specific build instructions, but that's just a wild guess.