makefile OR code blocks TO eclipse on ubuntu
hi i have a c++ opengl/opencv codeblocks project http://www.openframeworks.cc/setup/linux-codeblocks with all makefiles. even if codeblocks seems to be grat tool i'm addicted to eclipse (using it with python and java). is there a way to import it in eclipse without melting brain?
is there some automatic or blackmagic tool for creating eclipse project from codeblocks project or from sources and makefiles?
[EDIT] ok, i've managed to compile with Makefile project in Eclipse's CDT.
now i have binary files in projectpath/bin/ (and i don't want to modify the makefile because it's a little mess).
if i use them from shell they works ok. but i i click run button in eclipse "Launch failed. Binary 开发者_Go百科not found."
how can i tell to eclipse to localize correclty the compiled project?
If you have a makefile for it, then Eclipse's CDT's Makefile project option should work just fine.
There is a thread in the openframeworks forum that discuses using eclipse as an editor for openframeworks at http://www.openframeworks.cc/forum/viewtopic.php?t=435
another very cheap solution is using whatever editor you want and use the codeblocks commandline mode for compiling your project in a shell
codeblocks --build whatever.cbp
精彩评论