I need t add a .lib input to multiple projects in Visual Studio 2008 (C++).
Is there a way to do it fast? I'm going project after project and clicking properties then going to the linker and adding the .lib manually..
Thank you,
Matias.
I need t add a .lib input to multiple projects in Visual Studio 2008 (C++).
Is there a way to do it fast? I'm going project after project and clicking properties then going to the linker and adding the .lib manually..
Thank you,
Matias.
If the .lib
is produced by one of your own projects, you can add a project dependency to all the project that need your .lib
.
This can be done by selecting each project in the Solution Explorer, right click, and go to Project Dependencies.
Microsoft has an MSDN page that describes this in more detail.