summaryrefslogtreecommitdiffstats
path: root/Source/cmProcessTools.cxx
Commit message (Collapse)AuthorAgeFilesLines
* CTest: Parse empty Git commits correctlyBrad King2010-06-231-2/+4
| | | | | | | 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: Create cmProcessTools to parse child outputBrad King2009-02-241-0/+93
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.