ENH: Enable compression with DartConfiguration file

This commit is contained in:
Andy Cedilnik 2005-01-27 17:44:25 -05:00
parent b9982e4b60
commit 1cca4b3b24
2 changed files with 2 additions and 0 deletions

View File

@ -48,6 +48,7 @@ CoverageCommand: @COVERAGE_COMMAND@
GunzipCommand: @GUNZIPCOMMAND@
CompressionCommand: @COMPRESSIONCOMMAND@
CompressionType: @COMPRESSIONCOMMAND@
CompressSubmission: @COMPRESS_SUBMISSION@
# Testing options
# TimeOut is the amount of time in seconds to wait for processes

View File

@ -413,6 +413,7 @@ void cmCTest::UpdateCTestConfiguration()
if ( m_DartMode )
{
m_TimeOut = atoi(m_DartConfiguration["TimeOut"].c_str());
m_CompressXMLFiles = cmSystemTools::IsOn(m_DartConfiguration["CompressSubmission"].c_str());
}
}