trouble adding header files to Eclipse project

I’m having trouble adding header files to my C++ projects in Eclipse Kepler. When I have Eclipse start a new project all the standard libraries are included in a separate folder hierarchy (see image) but I can’t seem to figure out how to add these to existing OF projects.

Does anyone have a solution?

![](http://forum.openframeworks.cc/uploads/default/3044/Screenshot from 2013-10-20 20:06:31.png)

i get those when i import a project using the New > Makefile project with existing code and select gcc linux as tool chain

but actually the configuration for OF projects is done through the config.make file in the project or addons.make to add addons. the only thing that that folder with header does is point to the system headers but it doesn’t matter if a header appears there or not to be able to use it in your project

Thanks Arturo,

The problem was that I wasn’t specifying Linux GCC as my toolchain when I setup the project. Creating a new project with this specified took care of my headers issue.

Thanks!