2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2003-03-06 19:20:26 +03: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.
|
2003-03-06 19:20:26 +03: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.
|
|
|
|
============================================================================*/
|
2003-03-06 19:20:26 +03:00
|
|
|
#include "cmGetCMakePropertyCommand.h"
|
|
|
|
|
2013-06-14 16:35:52 +04:00
|
|
|
#include "cmGlobalGenerator.h"
|
|
|
|
#include "cmLocalGenerator.h"
|
2004-02-22 21:14:59 +03:00
|
|
|
#include "cmake.h"
|
2015-04-11 15:15:55 +03:00
|
|
|
#include "cmState.h"
|
2015-03-08 15:51:20 +03:00
|
|
|
#include "cmAlgorithms.h"
|
2004-02-22 21:14:59 +03:00
|
|
|
|
2003-03-06 19:20:26 +03:00
|
|
|
// cmGetCMakePropertyCommand
|
2008-01-23 18:28:26 +03:00
|
|
|
bool cmGetCMakePropertyCommand
|
|
|
|
::InitialPass(std::vector<std::string> const& args, cmExecutionStatus &)
|
2003-03-06 19:20:26 +03:00
|
|
|
{
|
|
|
|
if(args.size() < 2 )
|
|
|
|
{
|
|
|
|
this->SetError("called with incorrect number of arguments");
|
|
|
|
return false;
|
|
|
|
}
|
2011-02-03 02:18:14 +03:00
|
|
|
|
2003-03-06 19:20:26 +03:00
|
|
|
std::string variable = args[0];
|
2007-06-25 17:51:37 +04:00
|
|
|
std::string output = "NOTFOUND";
|
2003-03-06 19:20:26 +03:00
|
|
|
|
2011-02-03 02:18:14 +03:00
|
|
|
if ( args[1] == "VARIABLES" )
|
2003-03-06 19:20:26 +03:00
|
|
|
{
|
2015-06-07 16:11:42 +03:00
|
|
|
std::vector<std::string> vars = this->Makefile->GetDefinitions();
|
2015-01-15 02:06:11 +03:00
|
|
|
if (!vars.empty())
|
2003-03-06 19:20:26 +03:00
|
|
|
{
|
2015-01-14 23:31:46 +03:00
|
|
|
output = cmJoin(vars, ";");
|
2003-03-06 19:20:26 +03:00
|
|
|
}
|
|
|
|
}
|
2003-08-07 02:54:13 +04:00
|
|
|
else if ( args[1] == "MACROS" )
|
|
|
|
{
|
2015-02-21 13:25:47 +03:00
|
|
|
output.clear();
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Makefile->GetListOfMacros(output);
|
2003-08-07 02:54:13 +04:00
|
|
|
}
|
2008-07-08 19:52:25 +04:00
|
|
|
else if ( args[1] == "COMPONENTS" )
|
|
|
|
{
|
2014-02-10 09:21:34 +04:00
|
|
|
const std::set<std::string>* components
|
2015-05-03 12:10:30 +03:00
|
|
|
= this->Makefile->GetGlobalGenerator()->GetInstallComponents();
|
2015-01-14 23:31:46 +03:00
|
|
|
output = cmJoin(*components, ";");
|
2008-07-08 19:52:25 +04:00
|
|
|
}
|
2003-03-06 19:20:26 +03:00
|
|
|
else
|
|
|
|
{
|
2015-06-06 10:41:20 +03:00
|
|
|
const char *prop = 0;
|
|
|
|
if (!args[1].empty())
|
|
|
|
{
|
|
|
|
prop = this->Makefile->GetState()->GetGlobalProperty(args[1]);
|
|
|
|
}
|
2007-06-25 17:51:37 +04:00
|
|
|
if (prop)
|
|
|
|
{
|
|
|
|
output = prop;
|
|
|
|
}
|
2003-03-06 19:20:26 +03:00
|
|
|
}
|
2011-02-03 02:18:14 +03:00
|
|
|
|
2014-03-11 03:04:11 +04:00
|
|
|
this->Makefile->AddDefinition(variable, output.c_str());
|
2011-02-03 02:18:14 +03:00
|
|
|
|
2003-03-06 19:20:26 +03:00
|
|
|
return true;
|
|
|
|
}
|