I've been trying to figure this one out for the last couple of days and I haven't found anything related on the web.
I have a series of Projects which generate .exe files using Visual Studio 2012 (the behavior happens under newer versions as well). I use Property Sheets to set all compile options; therefore, all my CL & Link switches are consistent throughout my .exe Projects. I have verified that none of the switches haven been locally overwritten within the problem Projects.
So the issue I have is that 2 of my 41 Projects generate .lib & .exp files AS WELL as the desired .exe file. I've never seen this before and I don't quite understand why those would be needed for .exe. It's as if the linker momentarily treats the Projects as .dll, but ultimately generates an .exe.
Would anyone know if this could be expected behavior, under certain conditions?
Thanks for the help.
I have found this link, which pretty much exactly describes what I'm getting. But the solution doesn't seem to apply in my case.
Why does my Visual C++ .exe project build create .lib and .exp files?