2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2005-02-17 23:23:00 +03:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2005-02-17 23:23:00 +03:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
2005-02-17 23:23:00 +03:00
|
|
|
#include "cmCTestUpdateCommand.h"
|
|
|
|
|
|
|
|
#include "cmCTest.h"
|
|
|
|
#include "cmCTestGenericHandler.h"
|
|
|
|
|
2006-03-29 21:01:24 +04:00
|
|
|
cmCTestGenericHandler* cmCTestUpdateCommand::InitializeHandler()
|
2005-02-17 23:23:00 +03:00
|
|
|
{
|
2006-03-29 21:01:24 +04:00
|
|
|
if ( this->Values[ct_SOURCE] )
|
2005-02-17 23:23:00 +03:00
|
|
|
{
|
2006-03-29 21:01:24 +04:00
|
|
|
this->CTest->SetCTestConfiguration("SourceDirectory",
|
2006-07-11 23:58:07 +04:00
|
|
|
cmSystemTools::CollapseFullPath(
|
|
|
|
this->Values[ct_SOURCE]).c_str());
|
2006-03-29 21:01:24 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this->CTest->SetCTestConfiguration("SourceDirectory",
|
2006-07-11 23:58:07 +04:00
|
|
|
cmSystemTools::CollapseFullPath(
|
|
|
|
this->Makefile->GetDefinition("CTEST_SOURCE_DIRECTORY")).c_str());
|
2005-02-17 23:23:00 +03:00
|
|
|
}
|
2006-03-29 21:01:24 +04:00
|
|
|
std::string source_dir
|
|
|
|
= this->CTest->GetCTestConfiguration("SourceDirectory");
|
2005-02-17 23:23:00 +03:00
|
|
|
|
2006-03-15 19:02:08 +03:00
|
|
|
this->CTest->SetCTestConfigurationFromCMakeVariable(this->Makefile,
|
2006-03-09 19:17:10 +03:00
|
|
|
"UpdateCommand", "CTEST_UPDATE_COMMAND");
|
2006-03-15 19:02:08 +03:00
|
|
|
this->CTest->SetCTestConfigurationFromCMakeVariable(this->Makefile,
|
2006-03-09 19:17:10 +03:00
|
|
|
"UpdateOptions", "CTEST_UPDATE_OPTIONS");
|
2006-03-15 19:02:08 +03:00
|
|
|
this->CTest->SetCTestConfigurationFromCMakeVariable(this->Makefile,
|
2006-03-09 19:17:10 +03:00
|
|
|
"CVSCommand", "CTEST_CVS_COMMAND");
|
2006-03-15 19:02:08 +03:00
|
|
|
this->CTest->SetCTestConfigurationFromCMakeVariable(this->Makefile,
|
2006-03-09 19:17:10 +03:00
|
|
|
"CVSUpdateOptions", "CTEST_CVS_UPDATE_OPTIONS");
|
2006-03-15 19:02:08 +03:00
|
|
|
this->CTest->SetCTestConfigurationFromCMakeVariable(this->Makefile,
|
2006-03-09 19:17:10 +03:00
|
|
|
"SVNCommand", "CTEST_SVN_COMMAND");
|
2006-03-15 19:02:08 +03:00
|
|
|
this->CTest->SetCTestConfigurationFromCMakeVariable(this->Makefile,
|
2006-03-09 19:17:10 +03:00
|
|
|
"SVNUpdateOptions", "CTEST_SVN_UPDATE_OPTIONS");
|
2009-05-15 00:13:52 +04:00
|
|
|
this->CTest->SetCTestConfigurationFromCMakeVariable(this->Makefile,
|
|
|
|
"BZRCommand", "CTEST_BZR_COMMAND");
|
|
|
|
this->CTest->SetCTestConfigurationFromCMakeVariable(this->Makefile,
|
|
|
|
"BZRUpdateOptions", "CTEST_BZR_UPDATE_OPTIONS");
|
2009-04-22 17:19:06 +04:00
|
|
|
this->CTest->SetCTestConfigurationFromCMakeVariable(this->Makefile,
|
|
|
|
"GITCommand", "CTEST_GIT_COMMAND");
|
|
|
|
this->CTest->SetCTestConfigurationFromCMakeVariable(this->Makefile,
|
|
|
|
"GITUpdateOptions", "CTEST_GIT_UPDATE_OPTIONS");
|
2010-06-09 00:12:28 +04:00
|
|
|
this->CTest->SetCTestConfigurationFromCMakeVariable(this->Makefile,
|
|
|
|
"GITUpdateCustom", "CTEST_GIT_UPDATE_CUSTOM");
|
2009-07-10 19:08:05 +04:00
|
|
|
this->CTest->SetCTestConfigurationFromCMakeVariable(this->Makefile,
|
|
|
|
"HGCommand", "CTEST_HG_COMMAND");
|
|
|
|
this->CTest->SetCTestConfigurationFromCMakeVariable(this->Makefile,
|
|
|
|
"HGUpdateOptions", "CTEST_HG_UPDATE_OPTIONS");
|
2005-05-02 22:15:29 +04:00
|
|
|
|
2006-03-10 23:03:09 +03:00
|
|
|
cmCTestGenericHandler* handler
|
|
|
|
= this->CTest->GetInitializedHandler("update");
|
2005-02-17 23:23:00 +03:00
|
|
|
if ( !handler )
|
|
|
|
{
|
|
|
|
this->SetError("internal CTest error. Cannot instantiate update handler");
|
2006-03-29 21:33:41 +04:00
|
|
|
return 0;
|
2005-02-17 23:23:00 +03:00
|
|
|
}
|
2005-06-16 21:18:21 +04:00
|
|
|
handler->SetCommand(this);
|
2006-03-29 21:01:24 +04:00
|
|
|
if ( source_dir.empty() )
|
2005-06-16 21:18:21 +04:00
|
|
|
{
|
|
|
|
this->SetError("source directory not specified. Please use SOURCE tag");
|
2006-03-29 21:33:41 +04:00
|
|
|
return 0;
|
2005-06-16 21:18:21 +04:00
|
|
|
}
|
2006-03-29 21:01:24 +04:00
|
|
|
handler->SetOption("SourceDirectory", source_dir.c_str());
|
|
|
|
return handler;
|
2005-02-17 23:23:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|