I’m trying to compile two folders in eclipse from a large open source project which is compiled by make. I have two folders opencog/server and opencog/atomspace. The problem is that the includes refer to the subfolders in the large project
e.g. #include “opencog/server/Factory.h” instead of #include “Factory.h”
so eclipse looks for opencog/server/opencog/server/Factory.h instead of opencog/server/Factory.h
Is there any way to solve this without changing the includes?
Thanks
If you have
myfolder/opencog/serverthen addmyfolderto the include search paths.