Linking to multiple .obj for unit testing a console application

给你一囗甜甜゛ 提交于 2019-11-28 20:54:29
toussa

I had the exact same configuration as yours and this is what I did:

I used the LIB utility of visual studio to put all .obj files into a .lib library, and then I could make my gtest project link to it.

Putting the command

lib /NOLOGO /OUT:"$(TargetPath).lib" "$(ProjectDir)\$(Configuration)\*.obj"

into the "Build events"/"Post-build Event" of your main project, you can keep your console application as a .exe and in the same time aggregate all your obj files to an up-to-date lib.

Hope it helps!

By the way, this problem is a bit similar to this post: Linker error - linking two "application" type projects in order to use Google Test and I think it could be usefull to link it here.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!