Difference between Header Search Path and Library Search Path?
Header search path is where the compiler will look for header files (i.e. the ".h" files you include from your class implementations.
Library search path is where the linker will look for compiled object files (or archive files containing those compiled object files) that are referenced from within the code being compiled and linked.