Hi I have a built-in C project, and all the C base libraries are stored in an external folder (and not in the workspace). I can compile because the compiler knows where to look for these files, but Eclipse does not know that these files exist, and I get error messages: 
I can add one folder manually: rightClickOnProject->Properties->C/C++ Include Paths and Symbols -> Add External Include Path
For example, the file <stdint.h> is located in the folder C:\embARM7\yagarto\arm-elf\include , so I do the following:

This enables the eclipse error marker for <stdint.h>
But the file <stdio.h> is in the folder C:\embARM7\yagarto\arm-elf\include\sys , and I need to run the whole process again for:

Now the following header file is in C:\embARM7\yagarto\arm-elf\include\machine , etc. etc....
My question is: Is there a way to add an external include path with all subfolders? View "add this folder and all subfolders" / "add this folder recursively". Like C:\embARM7\yagarto\arm-elf\include\* , so I donβt need to add each folder to the folder structure manually. For one project, this is 5 minutes, but I have to do it for 10 projects, and this work sucks.
thanks
source share