VS 2005 Compile Does not create Object File

EDN Admin

Well-known member
Joined
Aug 7, 2010
Messages
12,794
Location
In the Machine
I am  migrating a C++ project from Visual Studio 2003 to Visual Studio 2005. The project gets converted and after some modifications the build says all files compiled successfully. But no Obj files are created. The linker reports error 

    LINK : fatal error LNK1104: cannot open file .ReleaseBitmapHandler.obj

which occurs because that object file does not in fact exist.
The project properties under C/C++ Output Files have the property Object File Name set to $(IntDir), which is the default and which is properly set to the folder name.
Why is the compiler not creating any object files?
Is there some compile option set from project properties that can prevent the object file being created?
Thanks.
Phil

View the full article
 
Back
Top