summaryrefslogtreecommitdiffstats
path: root/Source/cmProcessTools.h
Commit message (Collapse)AuthorAgeFilesLines
* CTest: Parse empty Git commits correctlyBrad King2010-06-231-0/+1
| | | | | | | Git's diff-tree format has no '\n'-terminated blank line at the end of its commit message body block if there are no diff lines. Instead the message body is terminated by '\0' and there is no diff section. Teach CTest to parse the format in this case.
* Convert CMake to OSI-approved BSD LicenseBrad King2009-09-281-14/+9
| | | | | | | This converts the CMake license to a pure 3-clause OSI-approved BSD License. We drop the previous license clause requiring modified versions to be plainly marked. We also update the CMake copyright to cover the full development time range.
* ENH: New OutputParser::Process() signatureBrad King2009-07-101-0/+2
| | | | | | This overload accepts a null-terminated string instead of requiring a length. It is useful to pass some fake process output before and after the real process output.
* COMP: cmProcessTools::OutputParser virtual dtorBrad King2009-02-241-0/+2
| | | | | This class has virtual methods and therefore should have a virtual destructor.
* ENH: Create cmProcessTools to parse child outputBrad King2009-02-241-0/+82
This class provides a RunProcess method to run a child process and send its output to an abstract parsing interface. This also provides a simple line parser and logger implementing the parsing interface.