I've loaded a C++ project into Eclipse (Europa) and I'm familiarizing myself with the CDT interface.
There is one particularly annoying error message for the following line:
#include "somedir/somefile.h"
somedir/somefile.h: No such file or directory
The include file exists in "/opt/local/project/include/somedir/somefile.h".
Under Project > Properties > C/C++ General > Paths and Symbols > Includes, I've already added the include directory "/opt/local/project/include".
However, this does not seem to solve the issue.
Does anyone know how to deal with this error? Thanks.
Edit: Solved the problem. Turns out that it was a simple issue. I had to "refresh" all the projects in the workspace.