[cmake-developers] Avoid merging stderr/stdout in RunSingleCommand

2011-05-16 Thread Johan Björk
Hi, CMake merges the output of stderr/stdout when running cmake --build . ... The --build doesn't really do anything fancy, just boils down to calling cmSystemTools::RunSingleCommand with the verbose=True argument. (Seems it does not use the output variable). Would it be possible to change the v

Re: [cmake-developers] Avoid merging stderr/stdout in RunSingleCommand

2011-05-16 Thread Brad King
On 05/16/2011 10:05 AM, Johan Björk wrote: > Would it be possible to change the verbose flag to output the results > on the corresponding stream as it was read on? Instead replace the verbose boolean with an enumeration that chooses among off, on, or split verbosity. > I don't quite understand th

Re: [cmake-developers] Avoid merging stderr/stdout in RunSingleCommand

2011-07-20 Thread Johan Björk
Hi Brad, Finally got around to fix this properly. Let me know what you think. Cheers /Johan On Mon, May 16, 2011 at 6:58 PM, Brad King wrote: > On 05/16/2011 10:05 AM, Johan Björk wrote: > > Would it be possible to change the verbose flag to output the results > > on the corresponding stream a

Re: [cmake-developers] Avoid merging stderr/stdout in RunSingleCommand

2011-07-25 Thread Brad King
On 07/20/2011 05:48 AM, Johan Björk wrote: > Finally got around to fix this properly. Let me know what you think. Cool, thanks! Please split the patch into one that converts the boolean to an enumeration value with just OUTPUT_NONE and OUTPUT_MERGE and a second patch that adds OUTPUT_NORMAL and t

Re: [cmake-developers] Avoid merging stderr/stdout in RunSingleCommand

2011-07-26 Thread Johan Björk
Sure, attached files. /Johan On Mon, Jul 25, 2011 at 5:32 PM, Brad King wrote: > On 07/20/2011 05:48 AM, Johan Björk wrote: > > Finally got around to fix this properly. Let me know what you think. > > Cool, thanks! Please split the patch into one that converts the boolean > to an enumeration

Re: [cmake-developers] Avoid merging stderr/stdout in RunSingleCommand

2011-07-27 Thread Brad King
On 07/26/2011 03:38 AM, Johan Björk wrote: > Sure, attached files. Applied, thanks! http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=f5ac6fa5 http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=ea1696e9 -Brad ___ cmake-developers mailing list cmake-de