2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2001-05-04 19:34:59 +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.
|
2001-05-04 19:34:59 +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.
|
|
|
|
============================================================================*/
|
2001-05-04 19:34:59 +04:00
|
|
|
#include "cmBuildCommand.h"
|
|
|
|
|
2005-04-29 20:50:29 +04:00
|
|
|
#include "cmLocalGenerator.h"
|
|
|
|
#include "cmGlobalGenerator.h"
|
|
|
|
|
2001-05-04 19:34:59 +04:00
|
|
|
// cmBuildCommand
|
2008-01-23 18:28:26 +03:00
|
|
|
bool cmBuildCommand
|
|
|
|
::InitialPass(std::vector<std::string> const& args, cmExecutionStatus &)
|
2001-05-04 19:34:59 +04:00
|
|
|
{
|
|
|
|
if(args.size() < 2 )
|
|
|
|
{
|
|
|
|
this->SetError("called with incorrect number of arguments");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
const char* define = args[0].c_str();
|
|
|
|
const char* cacheValue
|
2006-03-15 19:02:08 +03:00
|
|
|
= this->Makefile->GetDefinition(define);
|
2001-09-20 23:08:30 +04:00
|
|
|
std::string makeprogram = args[1];
|
2006-07-09 21:18:15 +04:00
|
|
|
std::string configType = "Release";
|
|
|
|
const char* cfg = getenv("CMAKE_CONFIG_TYPE");
|
|
|
|
if ( cfg )
|
|
|
|
{
|
|
|
|
configType = cfg;
|
|
|
|
}
|
2006-03-15 19:02:08 +03:00
|
|
|
std::string makecommand = this->Makefile->GetLocalGenerator()
|
|
|
|
->GetGlobalGenerator()->GenerateBuildCommand
|
|
|
|
(makeprogram.c_str(), this->Makefile->GetProjectName(), 0,
|
2006-07-09 21:18:15 +04:00
|
|
|
0, configType.c_str(), true, false);
|
2005-12-01 19:41:00 +03:00
|
|
|
|
2005-04-29 20:50:29 +04:00
|
|
|
if(cacheValue)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Makefile->AddCacheDefinition(define,
|
2001-08-08 19:54:46 +04:00
|
|
|
makecommand.c_str(),
|
|
|
|
"Command used to build entire project "
|
|
|
|
"from the command line.",
|
|
|
|
cmCacheManager::STRING);
|
2001-05-04 19:34:59 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|