I'm sure there is a really simple solution to this.
I'm trying to include a header file. I have added the include directory. when I include with quotes the new feature in vs2010 now shows me that it can 'see' the file I want to include and the tool tip references it in the correct directory.
however I get a red underscore under the #include indicating there is a problem and the project won't build because it cannot include the file.
I can build by adding the full relative path but this is a bit messy.
so in summary
#include "myfile.h" FAILS
#include "../../includes/myfile.h" WORKS
any ideas?