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"
|
|
|
|
|
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 20:31:01 +03:00
|
|
|
std::vector<std::string>::size_type cc;
|
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
|
|
|
{
|
|
|
|
int cacheonly = 0;
|
2006-03-15 19:02:08 +03:00
|
|
|
std::vector<std::string> vars = this->Makefile->GetDefinitions(cacheonly);
|
2011-02-03 02:18:14 +03:00
|
|
|
if (vars.size()>0)
|
2003-03-06 19:20:26 +03:00
|
|
|
{
|
2011-02-03 02:18:14 +03:00
|
|
|
output = vars[0];
|
|
|
|
}
|
|
|
|
for ( cc = 1; cc < vars.size(); ++cc )
|
|
|
|
{
|
|
|
|
output += ";";
|
2003-03-06 19:20:26 +03:00
|
|
|
output += vars[cc];
|
|
|
|
}
|
|
|
|
}
|
2003-08-07 02:54:13 +04:00
|
|
|
else if ( args[1] == "MACROS" )
|
|
|
|
{
|
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" )
|
|
|
|
{
|
|
|
|
const std::set<cmStdString>* components
|
|
|
|
= this->Makefile->GetLocalGenerator()->GetGlobalGenerator()
|
|
|
|
->GetInstallComponents();
|
|
|
|
std::set<cmStdString>::const_iterator compIt;
|
|
|
|
output = "";
|
|
|
|
for (compIt = components->begin(); compIt != components->end(); ++compIt)
|
|
|
|
{
|
|
|
|
if (compIt != components->begin())
|
|
|
|
{
|
|
|
|
output += ";";
|
|
|
|
}
|
|
|
|
output += *compIt;
|
|
|
|
}
|
|
|
|
}
|
2003-03-06 19:20:26 +03:00
|
|
|
else
|
|
|
|
{
|
2011-02-03 02:18:14 +03:00
|
|
|
const char *prop =
|
2007-06-25 17:51:37 +04:00
|
|
|
this->Makefile->GetCMakeInstance()->GetProperty(args[1].c_str());
|
|
|
|
if (prop)
|
|
|
|
{
|
|
|
|
output = prop;
|
|
|
|
}
|
2003-03-06 19:20:26 +03:00
|
|
|
}
|
2011-02-03 02:18:14 +03:00
|
|
|
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Makefile->AddDefinition(variable.c_str(), output.c_str());
|
2011-02-03 02:18:14 +03:00
|
|
|
|
2003-03-06 19:20:26 +03:00
|
|
|
return true;
|
|
|
|
}
|