Is it possible to automatically link the C ++ static library in Visual Studio 2008? Or is there an improvement in using the standard approach?
I am developing a set of C ++ libraries, and linking / testing them is quite a pain. The usual approach is to specify .lib files in test clients, but now the list has become quite large (my own libraries, opencv, boost and others), and I always skip something when switching between debug and release modes, gpu and non-gpu etc. When I open the linker in the project properties, the list scrolls for some time.
I was hoping I could automatically indicate that if client # includes that the project should also reference the specified .lib (debug / release). Is this possible or is there an alternative approach that will help manage communication with minimal user interaction?
Steve source
share