I have build static library with two files: blink.h and blink.c, where functions are declared in the blink.c.
Now I have created an another C project with program: controller.c, in which I have included the file blink.h by specifying #include "blink.h". I have included previous the static library in this project. When I build this project, I get the following error:
"blink.h no file or directory"
I expected that blink.h will be referred through that static lib and this error wont occur, but it is.