CMake/Source/CTest/cmCTestBuildCommand.cxx

161 lines
5.2 KiB
C++
Raw Normal View History

/*=========================================================================
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
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
#include "cmCTestBuildCommand.h"
#include "cmCTest.h"
#include "cmCTestGenericHandler.h"
#include "cmCTestBuildHandler.h"
2005-05-02 23:51:58 +04:00
#include "cmake.h"
#include "cmGlobalGenerator.h"
//----------------------------------------------------------------------------
cmCTestBuildCommand::cmCTestBuildCommand()
{
2006-03-10 23:03:09 +03:00
this->GlobalGenerator = 0;
this->Arguments[ctb_NUMBER_ERRORS] = "NUMBER_ERRORS";
this->Arguments[ctb_NUMBER_WARNINGS] = "NUMBER_WARNINGS";
this->Arguments[ctb_LAST] = 0;
this->Last = ctb_LAST;
}
//----------------------------------------------------------------------------
cmCTestBuildCommand::~cmCTestBuildCommand()
{
2006-03-10 23:03:09 +03:00
if ( this->GlobalGenerator )
{
2006-03-10 23:03:09 +03:00
delete this->GlobalGenerator;
this->GlobalGenerator = 0;
}
}
//----------------------------------------------------------------------------
cmCTestGenericHandler* cmCTestBuildCommand::InitializeHandler()
{
2006-03-10 23:03:09 +03:00
cmCTestGenericHandler* handler
= this->CTest->GetInitializedHandler("build");
if ( !handler )
{
this->SetError("internal CTest error. Cannot instantiate build handler");
2006-03-29 21:33:41 +04:00
return 0;
}
this->Handler = (cmCTestBuildHandler*)handler;
2006-03-09 19:17:10 +03:00
const char* ctestBuildCommand
2006-03-15 19:02:08 +03:00
= this->Makefile->GetDefinition("CTEST_BUILD_COMMAND");
2005-05-02 23:51:58 +04:00
if ( ctestBuildCommand && *ctestBuildCommand )
{
2006-03-10 23:03:09 +03:00
this->CTest->SetCTestConfiguration("MakeCommand", ctestBuildCommand);
2005-05-02 23:51:58 +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");
2006-03-09 19:17:10 +03:00
const char* cmakeProjectName
2006-03-15 19:02:08 +03:00
= this->Makefile->GetDefinition("CTEST_PROJECT_NAME");
2006-03-09 19:17:10 +03:00
const char* cmakeBuildConfiguration
2006-03-15 19:02:08 +03:00
= this->Makefile->GetDefinition("CTEST_BUILD_CONFIGURATION");
2006-03-09 19:17:10 +03:00
const char* cmakeBuildAdditionalFlags
2006-03-15 19:02:08 +03:00
= this->Makefile->GetDefinition("CTEST_BUILD_FLAGS");
2007-01-30 19:48:47 +03:00
const char* cmakeBuildTarget
= this->Makefile->GetDefinition("CTEST_BUILD_TARGET");
2005-05-02 23:51:58 +04:00
if ( cmakeGeneratorName && *cmakeGeneratorName &&
cmakeProjectName && *cmakeProjectName )
{
if ( !cmakeBuildConfiguration )
{
cmakeBuildConfiguration = "Release";
}
2006-03-10 23:03:09 +03:00
if ( this->GlobalGenerator )
{
2006-03-10 23:03:09 +03:00
if ( strcmp(this->GlobalGenerator->GetName(),
cmakeGeneratorName) != 0 )
{
2006-03-10 23:03:09 +03:00
delete this->GlobalGenerator;
this->GlobalGenerator = 0;
}
}
2006-03-10 23:03:09 +03:00
if ( !this->GlobalGenerator )
{
2006-03-10 23:03:09 +03:00
this->GlobalGenerator =
2006-03-15 19:02:08 +03:00
this->Makefile->GetCMakeInstance()->CreateGlobalGenerator(
2006-03-09 19:17:10 +03:00
cmakeGeneratorName);
}
2006-03-15 19:02:08 +03:00
this->GlobalGenerator->FindMakeProgram(this->Makefile);
2006-03-09 19:17:10 +03:00
const char* cmakeMakeProgram
2006-03-15 19:02:08 +03:00
= this->Makefile->GetDefinition("CMAKE_MAKE_PROGRAM");
if(strlen(cmakeBuildConfiguration) == 0)
{
const char* config = 0;
#ifdef CMAKE_INTDIR
config = CMAKE_INTDIR;
#endif
if(!config)
{
config = "Debug";
}
cmakeBuildConfiguration = config;
}
std::string buildCommand
= this->GlobalGenerator->
GenerateBuildCommand(cmakeMakeProgram,
cmakeProjectName,
cmakeBuildAdditionalFlags, cmakeBuildTarget,
cmakeBuildConfiguration, true, false);
2007-06-14 21:05:09 +04:00
cmCTestLog(this->CTest, HANDLER_VERBOSE_OUTPUT,
"SetMakeCommand:"
<< buildCommand.c_str() << "\n");
2006-03-10 23:03:09 +03:00
this->CTest->SetCTestConfiguration("MakeCommand", buildCommand.c_str());
2005-05-02 23:51:58 +04:00
}
else
{
cmOStringStream ostr;
2006-03-09 19:17:10 +03:00
ostr << "CTEST_BUILD_COMMAND or CTEST_CMAKE_GENERATOR not specified. "
"Please specify the CTEST_CMAKE_GENERATOR and CTEST_PROJECT_NAME if "
"this is a CMake project, or specify the CTEST_BUILD_COMMAND for "
"cmake or any other project.";
2005-05-02 23:51:58 +04:00
this->SetError(ostr.str().c_str());
2006-03-29 21:33:41 +04:00
return 0;
2005-05-02 23:51:58 +04:00
}
}
2006-03-09 19:17:10 +03:00
return handler;
}
bool cmCTestBuildCommand::InitialPass(std::vector<std::string> const& args,
cmExecutionStatus &status)
{
bool ret = cmCTestHandlerCommand::InitialPass(args, status);
if ( this->Values[ctb_NUMBER_ERRORS] && *this->Values[ctb_NUMBER_ERRORS])
{
cmOStringStream str;
str << this->Handler->GetTotalErrors();
this->Makefile->AddDefinition(
this->Values[ctb_NUMBER_ERRORS], str.str().c_str());
}
if ( this->Values[ctb_NUMBER_WARNINGS]
&& *this->Values[ctb_NUMBER_WARNINGS])
{
cmOStringStream str;
str << this->Handler->GetTotalWarnings();
this->Makefile->AddDefinition(
this->Values[ctb_NUMBER_WARNINGS], str.str().c_str());
}
return ret;
}