2005-05-02 22:15:29 +04:00
|
|
|
/*=========================================================================
|
|
|
|
|
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
|
|
|
Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
|
|
|
|
See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
|
|
|
|
|
2006-03-09 19:17:10 +03:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
|
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
2005-05-02 22:15:29 +04:00
|
|
|
PURPOSE. See the above copyright notices for more information.
|
|
|
|
|
|
|
|
=========================================================================*/
|
|
|
|
#include "cmCTestConfigureCommand.h"
|
|
|
|
|
|
|
|
#include "cmCTest.h"
|
|
|
|
#include "cmCTestGenericHandler.h"
|
|
|
|
|
2006-03-29 21:01:24 +04:00
|
|
|
cmCTestGenericHandler* cmCTestConfigureCommand::InitializeHandler()
|
2005-05-02 22:15:29 +04:00
|
|
|
{
|
2006-03-29 21:01:24 +04:00
|
|
|
if ( this->Values[ct_BUILD] )
|
2005-05-05 18:18:41 +04:00
|
|
|
{
|
2006-03-29 21:01:24 +04:00
|
|
|
this->CTest->SetCTestConfiguration("BuildDirectory",
|
2006-07-11 23:58:07 +04:00
|
|
|
cmSystemTools::CollapseFullPath(
|
|
|
|
this->Values[ct_BUILD]).c_str());
|
2005-05-05 18:18:41 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-03-29 21:01:24 +04:00
|
|
|
this->CTest->SetCTestConfiguration("BuildDirectory",
|
2006-07-11 23:58:07 +04:00
|
|
|
cmSystemTools::CollapseFullPath(
|
|
|
|
this->Makefile->GetDefinition("CTEST_BINARY_DIRECTORY")).c_str());
|
2005-05-05 18:18:41 +04:00
|
|
|
}
|
2006-03-29 21:01:24 +04:00
|
|
|
if ( this->Values[ct_SOURCE] )
|
2005-05-04 19:13:35 +04: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());
|
2005-05-04 19:13:35 +04:00
|
|
|
}
|
2005-05-05 18:18:41 +04:00
|
|
|
else
|
|
|
|
{
|
2006-03-29 21:01:24 +04:00
|
|
|
this->CTest->SetCTestConfiguration("SourceDirectory",
|
2006-07-11 23:58:07 +04:00
|
|
|
cmSystemTools::CollapseFullPath(
|
|
|
|
this->Makefile->GetDefinition("CTEST_SOURCE_DIRECTORY")).c_str());
|
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");
|
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;
|
2006-03-29 21:01:24 +04:00
|
|
|
}
|
2005-05-05 18:18:41 +04:00
|
|
|
std::string cmakeConfigureCommand = "\"";
|
2006-03-10 23:03:09 +03:00
|
|
|
cmakeConfigureCommand += this->CTest->GetCMakeExecutable();
|
2005-05-05 18:18:41 +04:00
|
|
|
cmakeConfigureCommand += "\" \"-G";
|
|
|
|
cmakeConfigureCommand += cmakeGeneratorName;
|
|
|
|
cmakeConfigureCommand += "\" \"";
|
|
|
|
cmakeConfigureCommand += source_dir;
|
|
|
|
cmakeConfigureCommand += "\"";
|
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
|
|
|
|
{
|
2006-03-09 19:17:10 +03:00
|
|
|
this->SetError("Configure command is not specified. If this is a CMake "
|
|
|
|
"project, specify CTEST_CMAKE_GENERATOR, or if this is not CMake "
|
|
|
|
"project, specify 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
|
|
|
}
|
|
|
|
|
|
|
|
|