I am trying to create a library file in keil uv4. By following the method mentioned in uvision IDE user guide I am able to generate the .lib file.
Now I want to use this library file in other project. So, as mentioned in the user guide I am adding this library file to the current project of interest. But I am getting error like "No such file in directory" if I am using #include "libraryname.h" and error like "xyz function decleared implictly" (i.e. xyz function is defined in libraryname.c) if I am commenting #include "libraryname.h".
I am not getting furthur guidance in the respective user guide. Please assist me with valuable comments.
That is actually not working as it is giving some different error. Anyway when I am right clicking on the lib file and selecting the option for lib the first pop up comment I am getting is cannot successfully read archive "location where my library stored". How to fix this issue.