Any clever way to launch a makefile in Visual Studio only if build succeeded? - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T17:08:53Zhttp://stackoverflow.com/feeds/question/167388http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/167388/any-clever-way-to-launch-a-makefile-in-visual-studio-only-if-build-succeeded3Any clever way to launch a makefile in Visual Studio only if build succeeded?Enigme2008-10-03T15:20:19Z2008-10-03T15:26:25Z
<p>We have a makefile that is built last in our build process using Visual Studio to launch our unit tests. Unfortunately if the build fails the makefile is still processed and we have extra (annoying) errors. Any way to prevent that?</p>
<p>Example
Project A : build dummy.exe
Project B (makefile) : build command is : run dummy.exe /unittest</p>
<p>We want Project B to skip its build command when Project A has build errors. Thanks!</p>
http://stackoverflow.com/questions/167388/any-clever-way-to-launch-a-makefile-in-visual-studio-only-if-build-succeeded/167408#1674080Answer by xero for Any clever way to launch a makefile in Visual Studio only if build succeeded?xero2008-10-03T15:24:30Z2008-10-03T15:24:30Z<p>Go to Project Properties. I assume you already have something in the "Post-Build event command line" box? There is a "Run the post-build event" combobox, set it to "On successful build".</p>
<p>Is that what you're looking for?</p>
http://stackoverflow.com/questions/167388/any-clever-way-to-launch-a-makefile-in-visual-studio-only-if-build-succeeded/167420#1674201Answer by Joseph Daigle for Any clever way to launch a makefile in Visual Studio only if build succeeded?Joseph Daigle2008-10-03T15:26:25Z2008-10-03T15:26:25Z<p>Set Project B (your makefile project) to be dependant on Project A. This way Project B will always try to build Project A before it builds.</p>