MS Environment: How to force link a static library to another using .vsprops, if possible?

Posted by msbuildnewbie on Stack Overflow See other posts from Stack Overflow or by msbuildnewbie
Published on 2010-03-28T15:29:56Z Indexed on 2010/03/28 15:33 UTC
Read the original article Hit count: 339

Filed under:
|
|
|
|

Environment: VS 2008 in Windows.

Problem: A static library, say first.lib is not linked to, say second.lib, if first.lib is specified in .vsprops file and none of its functions is referenced in the second.lib.

If, however, first.lib is removed from the .vsprops file and placed instead in the appropriate project options dialog(1), it is linked, even if its functions remain unreferenced.

(1) Project -> Properties -> Configuration Properties -> Linker -> Input.

Our solution uses .vsprops exclusively and to somehow be able to specify first.lib in such a file with additional tweaking of some settings would be considered a more elegant solution.

Using a dummy function to pull in unused functions of first.lib is not an option.

Thanks in advance.

© Stack Overflow or respective owner

Related posts about vc++

Related posts about vsprops