I have eclipse installed with CDT on windows(7) . I installed MinGW. I pointed my include files directory at
c:\MinGW
I started a simple project with a class that basically just includes <string>
and <iostream>
The "hint icons" in the gutter are telling me that <iostream>
and <string>
are unresolved includes, but make is building my project just fine. This problem is subsequently leading to my definitions that rely on string not getting recognized.
How do I resolve the problem so that the IDE recognizes the includes the same way make does?
This is eclipse 3.7.1 .