Any clever way to launch a makefile in Visual Studio only if build succeeded? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T17:08:53Z http://stackoverflow.com/feeds/question/167388 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/167388/any-clever-way-to-launch-a-makefile-in-visual-studio-only-if-build-succeeded 3 Any clever way to launch a makefile in Visual Studio only if build succeeded? Enigme 2008-10-03T15:20:19Z 2008-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#167408 0 Answer by xero for Any clever way to launch a makefile in Visual Studio only if build succeeded? xero 2008-10-03T15:24:30Z 2008-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#167420 1 Answer by Joseph Daigle for Any clever way to launch a makefile in Visual Studio only if build succeeded? Joseph Daigle 2008-10-03T15:26:25Z 2008-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>