2001-05-04 19:34:59 +04:00
|
|
|
/*=========================================================================
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
2001-05-04 19:34:59 +04:00
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
|
|
|
|
See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
|
2001-05-04 19:34:59 +04:00
|
|
|
|
2006-03-10 21:06:26 +03:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
|
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
2002-01-21 23:30:43 +03:00
|
|
|
PURPOSE. See the above copyright notices 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;
|
|
|
|
}
|
|
|
|
|