2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2005-05-02 22:15:29 +04: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-05-02 22:15:29 +04: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-05-02 22:15:29 +04:00
|
|
|
#include "cmCTestConfigureCommand.h"
|
|
|
|
|
2009-12-04 20:09:01 +03:00
|
|
|
#include "cmGlobalGenerator.h"
|
2005-05-02 22:15:29 +04:00
|
|
|
#include "cmCTest.h"
|
|
|
|
#include "cmCTestGenericHandler.h"
|
|
|
|
|
2008-12-30 17:13:02 +03:00
|
|
|
cmCTestConfigureCommand::cmCTestConfigureCommand()
|
|
|
|
{
|
|
|
|
this->Arguments[ctc_OPTIONS] = "OPTIONS";
|
|
|
|
this->Arguments[ctc_LAST] = 0;
|
|
|
|
this->Last = ctc_LAST;
|
|
|
|
}
|
|
|
|
|
2006-03-29 21:01:24 +04:00
|
|
|
cmCTestGenericHandler* cmCTestConfigureCommand::InitializeHandler()
|
2005-05-02 22:15:29 +04:00
|
|
|
{
|
2008-12-30 17:13:02 +03:00
|
|
|
std::vector<std::string> options;
|
|
|
|
|
|
|
|
if (this->Values[ctc_OPTIONS])
|
|
|
|
{
|
|
|
|
cmSystemTools::ExpandListArgument(this->Values[ctc_OPTIONS], options);
|
|
|
|
}
|
|
|
|
|
2006-03-29 21:01:24 +04:00
|
|
|
if ( this->CTest->GetCTestConfiguration("BuildDirectory").empty() )
|
|
|
|
{
|
|
|
|
this->SetError("Build directory not specified. Either use BUILD "
|
|
|
|
"argument to CTEST_CONFIGURE command or set CTEST_BINARY_DIRECTORY "
|
|
|
|
"variable");
|
2006-03-29 21:33:41 +04:00
|
|
|
return 0;
|
2005-05-05 18:18:41 +04:00
|
|
|
}
|
|
|
|
|
2006-03-09 19:17:10 +03:00
|
|
|
const char* ctestConfigureCommand
|
2006-03-15 19:02:08 +03:00
|
|
|
= this->Makefile->GetDefinition("CTEST_CONFIGURE_COMMAND");
|
2009-12-04 20:09:01 +03:00
|
|
|
|
2005-05-05 18:18:41 +04:00
|
|
|
if ( ctestConfigureCommand && *ctestConfigureCommand )
|
|
|
|
{
|
2006-03-10 23:03:09 +03:00
|
|
|
this->CTest->SetCTestConfiguration("ConfigureCommand",
|
|
|
|
ctestConfigureCommand);
|
2005-05-05 18:18:41 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-03-09 19:17:10 +03:00
|
|
|
const char* cmakeGeneratorName
|
2006-03-15 19:02:08 +03:00
|
|
|
= this->Makefile->GetDefinition("CTEST_CMAKE_GENERATOR");
|
2005-05-05 18:18:41 +04:00
|
|
|
if ( cmakeGeneratorName && *cmakeGeneratorName )
|
|
|
|
{
|
2006-03-29 21:01:24 +04:00
|
|
|
const std::string& source_dir
|
|
|
|
= this->CTest->GetCTestConfiguration("SourceDirectory");
|
|
|
|
if ( source_dir.empty() )
|
|
|
|
{
|
|
|
|
this->SetError("Source directory not specified. Either use SOURCE "
|
|
|
|
"argument to CTEST_CONFIGURE command or set CTEST_SOURCE_DIRECTORY "
|
|
|
|
"variable");
|
2006-03-29 21:33:41 +04:00
|
|
|
return 0;
|
2009-12-30 02:03:45 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
const std::string cmakelists_file = source_dir + "/CMakeLists.txt";
|
|
|
|
if ( !cmSystemTools::FileExists(cmakelists_file.c_str()) )
|
|
|
|
{
|
|
|
|
cmOStringStream e;
|
|
|
|
e << "CMakeLists.txt file does not exist ["
|
|
|
|
<< cmakelists_file << "]";
|
|
|
|
this->SetError(e.str().c_str());
|
|
|
|
return 0;
|
2006-03-29 21:01:24 +04:00
|
|
|
}
|
2009-12-04 20:09:01 +03:00
|
|
|
|
|
|
|
bool multiConfig = false;
|
|
|
|
bool cmakeBuildTypeInOptions = false;
|
|
|
|
|
|
|
|
cmGlobalGenerator *gg =
|
|
|
|
this->Makefile->GetCMakeInstance()->CreateGlobalGenerator(
|
|
|
|
cmakeGeneratorName);
|
|
|
|
if(gg)
|
|
|
|
{
|
|
|
|
multiConfig = gg->IsMultiConfig();
|
|
|
|
delete gg;
|
|
|
|
}
|
|
|
|
|
2005-05-05 18:18:41 +04:00
|
|
|
std::string cmakeConfigureCommand = "\"";
|
2013-11-08 00:30:59 +04:00
|
|
|
cmakeConfigureCommand += cmSystemTools::GetCMakeCommand();
|
2008-12-30 17:13:02 +03:00
|
|
|
cmakeConfigureCommand += "\"";
|
|
|
|
|
|
|
|
std::vector<std::string>::const_iterator it;
|
|
|
|
std::string option;
|
|
|
|
for (it= options.begin(); it!=options.end(); ++it)
|
|
|
|
{
|
|
|
|
option = *it;
|
2009-12-04 20:09:01 +03:00
|
|
|
|
2008-12-30 17:13:02 +03:00
|
|
|
cmakeConfigureCommand += " \"";
|
|
|
|
cmakeConfigureCommand += option;
|
|
|
|
cmakeConfigureCommand += "\"";
|
2009-12-04 20:09:01 +03:00
|
|
|
|
|
|
|
if ((0 != strstr(option.c_str(), "CMAKE_BUILD_TYPE=")) ||
|
|
|
|
(0 != strstr(option.c_str(), "CMAKE_BUILD_TYPE:STRING=")))
|
|
|
|
{
|
|
|
|
cmakeBuildTypeInOptions = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-02-10 22:47:21 +03:00
|
|
|
if (!multiConfig && !cmakeBuildTypeInOptions &&
|
|
|
|
!this->CTest->GetConfigType().empty())
|
2009-12-04 20:09:01 +03:00
|
|
|
{
|
|
|
|
cmakeConfigureCommand += " \"-DCMAKE_BUILD_TYPE:STRING=";
|
|
|
|
cmakeConfigureCommand += this->CTest->GetConfigType();
|
|
|
|
cmakeConfigureCommand += "\"";
|
2008-12-30 17:13:02 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
cmakeConfigureCommand += " \"-G";
|
2005-05-05 18:18:41 +04:00
|
|
|
cmakeConfigureCommand += cmakeGeneratorName;
|
2008-12-30 17:13:02 +03:00
|
|
|
cmakeConfigureCommand += "\"";
|
|
|
|
|
2012-12-11 01:53:56 +04:00
|
|
|
const char* cmakeGeneratorToolset =
|
|
|
|
this->Makefile->GetDefinition("CTEST_CMAKE_GENERATOR_TOOLSET");
|
|
|
|
if(cmakeGeneratorToolset && *cmakeGeneratorToolset)
|
|
|
|
{
|
|
|
|
cmakeConfigureCommand += " \"-T";
|
|
|
|
cmakeConfigureCommand += cmakeGeneratorToolset;
|
|
|
|
cmakeConfigureCommand += "\"";
|
|
|
|
}
|
|
|
|
|
2008-12-30 17:13:02 +03:00
|
|
|
cmakeConfigureCommand += " \"";
|
2005-05-05 18:18:41 +04:00
|
|
|
cmakeConfigureCommand += source_dir;
|
|
|
|
cmakeConfigureCommand += "\"";
|
2008-12-30 17:13:02 +03:00
|
|
|
|
2006-03-10 23:03:09 +03:00
|
|
|
this->CTest->SetCTestConfiguration("ConfigureCommand",
|
2006-03-09 19:17:10 +03:00
|
|
|
cmakeConfigureCommand.c_str());
|
2005-05-05 18:18:41 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-12-04 20:09:01 +03:00
|
|
|
this->SetError("Configure command is not specified. If this is a "
|
|
|
|
"\"built with CMake\" project, set CTEST_CMAKE_GENERATOR. If not, "
|
|
|
|
"set CTEST_CONFIGURE_COMMAND.");
|
2006-03-29 21:33:41 +04:00
|
|
|
return 0;
|
2005-05-05 18:18:41 +04:00
|
|
|
}
|
|
|
|
}
|
2005-05-02 22:15:29 +04:00
|
|
|
|
2006-03-09 19:17:10 +03:00
|
|
|
cmCTestGenericHandler* handler
|
2006-03-10 23:03:09 +03:00
|
|
|
= this->CTest->GetInitializedHandler("configure");
|
2005-05-02 22:15:29 +04:00
|
|
|
if ( !handler )
|
|
|
|
{
|
2006-03-09 19:17:10 +03:00
|
|
|
this->SetError(
|
|
|
|
"internal CTest error. Cannot instantiate configure handler");
|
2006-03-29 21:33:41 +04:00
|
|
|
return 0;
|
2005-05-02 22:15:29 +04:00
|
|
|
}
|
2006-03-29 21:01:24 +04:00
|
|
|
return handler;
|
2005-05-02 22:15:29 +04:00
|
|
|
}
|