views:

53

answers:

0

I have the source code of a project that has been done in C++ eclipse in linux platform and i want to change a small value in one of the port related things. So I tried to build it in eclipse in fedora by File -> New ->Standard Make C++ Project. So many inclusion errors came and I got rid of it by doing Project -> Properties -> C/C++ Include Paths.

Then it was saying it cant find the makefile. So I checked for it and find it inside the Debug/ directory along with 3 other .mk files. I copied and pasted all those in the home directory and tried rebuilding. Then the real issue came. In the mainfile.h and mainfile.cpp, which are present in the home directory, wherever there are #include, it started saying "No such file or directory found". But 1 or 2 #include don't seems to be having any problem.

I am totally confused and couldn't understand what to do next. Plz help me...