I'm using Visual Studio 2008, and writing some stuff in C++. I'm using a Boost library (that is not header only).
So, linking to Boost requires one to add the directory to Boost binaries to the project's "additional linker paths" setting.
However, doesn't this conflict with source control? If I check in the project files, wouldn't the absolute path to Boost libs on my computer also be included in them?
I obviously don't want this to happen, so what should I do? Just adding the Boost directory to "Visual C++ Directories/Libraries" doesn't work.