|
|
@@ -19,98 +19,35 @@
|
|
|
#include "cmCTest.h"
|
|
|
#include "cmCTestGenericHandler.h"
|
|
|
|
|
|
-bool cmCTestConfigureCommand::InitialPass(
|
|
|
- std::vector<std::string> const& args)
|
|
|
+cmCTestGenericHandler* cmCTestConfigureCommand::InitializeHandler()
|
|
|
{
|
|
|
- const char* source_dir = 0;
|
|
|
- const char* build_dir = 0;
|
|
|
- const char* res_var = 0;
|
|
|
-
|
|
|
- bool havereturn_variable = false;
|
|
|
- bool havesource = false;
|
|
|
- bool havebuild = false;
|
|
|
- for(size_t i=0; i < args.size(); ++i)
|
|
|
- {
|
|
|
- if ( havereturn_variable )
|
|
|
- {
|
|
|
- res_var = args[i].c_str();
|
|
|
- havereturn_variable = false;
|
|
|
- }
|
|
|
- else if ( havebuild )
|
|
|
- {
|
|
|
- build_dir = args[i].c_str();
|
|
|
- havebuild = false;
|
|
|
- }
|
|
|
- else if ( havesource )
|
|
|
- {
|
|
|
- source_dir = args[i].c_str();
|
|
|
- havesource = false;
|
|
|
- }
|
|
|
- else if(args[i] == "RETURN_VALUE")
|
|
|
- {
|
|
|
- if ( res_var )
|
|
|
- {
|
|
|
- this->SetError("called with incorrect number of arguments. "
|
|
|
- "RETURN_VALUE specified twice.");
|
|
|
- return false;
|
|
|
- }
|
|
|
- havereturn_variable = true;
|
|
|
- }
|
|
|
- else if(args[i] == "SOURCE")
|
|
|
- {
|
|
|
- if ( source_dir )
|
|
|
- {
|
|
|
- this->SetError("called with incorrect number of arguments. "
|
|
|
- "SOURCE specified twice.");
|
|
|
- return false;
|
|
|
- }
|
|
|
- havesource = true;
|
|
|
- }
|
|
|
- else if(args[i] == "BUILD")
|
|
|
- {
|
|
|
- if ( build_dir )
|
|
|
- {
|
|
|
- this->SetError("called with incorrect number of arguments. "
|
|
|
- "BUILD specified twice.");
|
|
|
- return false;
|
|
|
- }
|
|
|
- havebuild = true;
|
|
|
- }
|
|
|
- else
|
|
|
- {
|
|
|
- cmOStringStream str;
|
|
|
- str << "called with incorrect number of arguments. Extra argument is: "
|
|
|
- << args[i].c_str() << ".";
|
|
|
- this->SetError(str.str().c_str());
|
|
|
- return false;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- if ( source_dir )
|
|
|
+ if ( this->Values[ct_BUILD] )
|
|
|
{
|
|
|
- this->CTest->SetCTestConfiguration("SourceDirectory", source_dir);
|
|
|
+ this->CTest->SetCTestConfiguration("BuildDirectory",
|
|
|
+ this->Values[ct_BUILD]);
|
|
|
}
|
|
|
else
|
|
|
{
|
|
|
- source_dir = this->Makefile->GetDefinition("CTEST_SOURCE_DIRECTORY");
|
|
|
+ this->CTest->SetCTestConfiguration("BuildDirectory",
|
|
|
+ this->Makefile->GetDefinition("CTEST_BINARY_DIRECTORY"));
|
|
|
}
|
|
|
-
|
|
|
- if ( build_dir )
|
|
|
+ if ( this->Values[ct_SOURCE] )
|
|
|
{
|
|
|
- this->CTest->SetCTestConfiguration("BuildDirectory", build_dir);
|
|
|
+ this->CTest->SetCTestConfiguration("SourceDirectory",
|
|
|
+ this->Values[ct_SOURCE]);
|
|
|
}
|
|
|
else
|
|
|
{
|
|
|
- build_dir = this->Makefile->GetDefinition("CTEST_BINARY_DIRECTORY");
|
|
|
- if ( !build_dir )
|
|
|
- {
|
|
|
- this->SetError("Build directory not specified. Either use BUILD "
|
|
|
- "argument to CTEST_CONFIGURE command or set CTEST_BINARY_DIRECTORY "
|
|
|
- "variable");
|
|
|
- return false;
|
|
|
- }
|
|
|
+ this->CTest->SetCTestConfiguration("SourceDirectory",
|
|
|
+ this->Makefile->GetDefinition("CTEST_SOURCE_DIRECTORY"));
|
|
|
+ }
|
|
|
+ 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");
|
|
|
+ return false;
|
|
|
}
|
|
|
-
|
|
|
|
|
|
const char* ctestConfigureCommand
|
|
|
= this->Makefile->GetDefinition("CTEST_CONFIGURE_COMMAND");
|
|
|
@@ -125,6 +62,15 @@ bool cmCTestConfigureCommand::InitialPass(
|
|
|
= this->Makefile->GetDefinition("CTEST_CMAKE_GENERATOR");
|
|
|
if ( cmakeGeneratorName && *cmakeGeneratorName )
|
|
|
{
|
|
|
+ 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");
|
|
|
+ return false;
|
|
|
+ }
|
|
|
std::string cmakeConfigureCommand = "\"";
|
|
|
cmakeConfigureCommand += this->CTest->GetCMakeExecutable();
|
|
|
cmakeConfigureCommand += "\" \"-G";
|
|
|
@@ -152,14 +98,7 @@ bool cmCTestConfigureCommand::InitialPass(
|
|
|
"internal CTest error. Cannot instantiate configure handler");
|
|
|
return false;
|
|
|
}
|
|
|
- int res = handler->ProcessHandler();
|
|
|
- if ( res_var )
|
|
|
- {
|
|
|
- cmOStringStream str;
|
|
|
- str << res;
|
|
|
- this->Makefile->AddDefinition(res_var, str.str().c_str());
|
|
|
- }
|
|
|
- return true;
|
|
|
+ return handler;
|
|
|
}
|
|
|
|
|
|
|