views:

509

answers:

2

Hi all!

I have a source code of an OpenSource project which I get from SVN. I was able to run autogen --> configure --> and make successfully (through the terminal). But I want to build the same project with Eclipse, and I can't port manually those source files to eclipse though. So, How can I set Eclipse to use external make files ? can anyone please help me ? Thanks.

+2  A: 

This might vary with different versions. The one I use is Eclipse 3.5 with CDT 6, and it is quite straightforward:

New Project -> C++ Project -> Makefile Project -> Empty project

Untick the 'Use default location' and provide the location where the root of your project and Makefile reside.

I found it misleading at first, and had a couple of dry runs in copied directories to make sure that the 'Empty project' would not clear the Makefile, but the fact is that the option name is probably misleading as 'Empty' stands for CDT will not create a Makefile for you (but won't delete an existing version either)

David Rodríguez - dribeas
A: 

Ok, I got it, It was straightforward. Just go to project properties --> C/C++ Build --> Make file generation --> and untick "Generate Make files automatically". In additionally you may have to set the Build location also.

Morpheus
Can you please explain the procedure? I am having the similar problem.I have to do ./bootstrap.sh followed by ./configure before make.
Arpit
Can I know where r u now with your problem? did you able to import the source code into the Eclipse ? (btw, as I can remember I run the configuration part manually, just used the Eclipse for make).
Morpheus