I'd like to have a Arduino library that includes a file "Config.h", where every sketch that includes that library would have its own "Config.h".
According to the Arduino documentation (https://www.arduino.cc/en/Hacking/BuildProcess), the sketch's directory should always be in the include path:
The include path includes the sketch's directory, the target directory (/hardware/core//) and the avr include directory (/hardware/tools/avr/avr/include/), as well as any library directories (in /hardware/libraries/) which contain a header file which is included by the main sketch file.
When I include "Config.h" in the library, however, it can not find the file in the sketch's directory. Is this broken, or am I misunderstanding the Arduino documentation?