So, I have a program that uses the precompiled units of a library.
This:
Allows me to keep the Search Paths totally empty (as they should be)
Prevents the compiler from keep recompiling the files of the library unnecessarily, saving compilation time.
But if the librar...