Visual Studio 2005 Tips

  • Beta 2 error, Project : error PRJ0003 : Error spawning 'cmd.exe'.
     Project->"Your project" Properties->Configuration Properties->Manifest Tool->Input and Output->Embed Manifest=No
     The manifest file will be creating.
    
     copy cme.exe in c:\windows\system32 to C:\Program Files\Microsoft Visual Studio 8\VC\bin
    

  • 'exit' : redefinition; declspec(noreturn) differs
       To fix the error, right click on the project name in the Solution 
       Explorer tab and select Properties -> C/C++ -> Preprocessor -> Preprocessor definitions 
       and append GLUT_BUILDING_LIB to the existing definitions, seperated by semicolons. 
    

Back