Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
319 views
in Technique[技术] by (71.8m points)

c++ - Linking to multiple .obj for unit testing a console application

Having a few issues and hope I can find some help.

I have two projects under the same solution in Visual Studio 2012

A bit of background I cam creating a console application which outputs as a .exe this is in one project.

In another project I have google test set up to run unit tests on the classes in the console application project.

If I was able to compile the main project into a static library there wouldn't be an issue due to could link to the .lib, however this isn't an option.

I have found that linking to the .obj works however I need to manually enter each one into the linker -> input and due to there is going to be a large number of classes I can see this getting messy.

How do I solve this issue, is there a way of linking to all .obj in the same folder or is there an option I am missing?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...