I know I can compile individual source files, but sometimes -- say, when editing a header file used by many .cpp
files -- multiple source files need to be recompiled. That's what Build is for.
Default behavior of the "Build" command in VC9 (Visual C++ 2008) is to attempt to compile all files that need it. Sometimes this just results in many failed compiles. I usually just watch for errors and hit ctrl-break to stop the build manually.
Is there a way to configure it such the build stops at the very first compile error (not the first failed project build) automatically?
This can be done by adding a macro that is run in response to the event OnBuildProjConfigDone.
The macro is as follows:
Yeah, this works fine on MSVC 2005-2010:
I know the question was for VS 2008, but I stumbled across it when searching for the same answer for VS 2012. Since macros are no longer supported in 2012, macro solutions won't work anymore.
You can download an extension that apparently works in VS 2010 and 2012 here. I can confirm that it works well in VS 2012.
The original link to the extension was given in this response.
You can also download this extension, seems to work for every version of Visual Studio
There is this post - not sure if it stops the build at the first error or the first failed project in a solution.
Ctrl-break will also stop it manually.
Now if there was some way to stop it spending 10mins rebuilding intelisense after a build failed!
I came up with a better macro guys. It stops immediately after the first error/s (soon as build window is updated).
Visual Studio -> Tools -> Macros -> Macro IDE... (or ALT+F11)
Hope it works out for you guys.