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