The header search path is where the compiler will look for header files (ie, the “.h” files that you include in your class implementations).
The library search path is the place where the linker will look for compiled object files (or archive files containing these compiled object files) that are referenced from code compiled and linked.
source share