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.
