How in Eclipse / CDT to specify the location of the folder with its header files?

For example, I have two folders created by me in a project that are located at the same hierarchy level: src and include. Sources are stored in src, and * .h files in include. I want to write in the source so:

#include "*.h" 

Not so:

 #include "../include/*.h" 

What do I need to do to have Eclipse include the include folder as its environment variable, or what?

Thanks in advance to everyone who will help.

    1 answer 1

    Right-click on the project to click, there Properties, and (for other compilers - the same settings): alt text

    • Ok! Thank you very much, it has become much easier. - VovanderBaby