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"
|
|
|
|
|
2016-04-29 17:53:13 +03:00
|
|
|
#include "cmAlgorithms.h"
|
2013-06-14 16:35:52 +04:00
|
|
|
#include "cmGlobalGenerator.h"
|
2015-04-11 15:15:55 +03:00
|
|
|
#include "cmState.h"
|
2016-04-29 17:53:13 +03:00
|
|
|
#include "cmake.h"
|
2004-02-22 21:14:59 +03:00
|
|
|
|
2003-03-06 19:20:26 +03:00
|
|
|
// cmGetCMakePropertyCommand
|
2016-05-16 17:34:04 +03:00
|
|
|
bool cmGetCMakePropertyCommand::InitialPass(
|
|
|
|
std::vector<std::string> const& args, cmExecutionStatus&)
|
2003-03-06 19:20:26 +03:00
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
if (args.size() < 2) {
|
2003-03-06 19:20:26 +03:00
|
|
|
this->SetError("called with incorrect number of arguments");
|
|
|
|
return false;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
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
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
if (args[1] == "VARIABLES") {
|
|
|
|
if (const char* varsProp = this->Makefile->GetProperty("VARIABLES")) {
|
2015-07-18 15:35:50 +03:00
|
|
|
output = varsProp;
|
2003-03-06 19:20:26 +03:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
} else if (args[1] == "MACROS") {
|
2015-02-21 13:25:47 +03:00
|
|
|
output.clear();
|
2016-05-16 17:34:04 +03:00
|
|
|
if (const char* macrosProp = this->Makefile->GetProperty("MACROS")) {
|
2015-07-18 15:32:09 +03:00
|
|
|
output = macrosProp;
|
2003-08-07 02:54:13 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
} else if (args[1] == "COMPONENTS") {
|
|
|
|
const std::set<std::string>* components =
|
|
|
|
this->Makefile->GetGlobalGenerator()->GetInstallComponents();
|
2015-01-14 23:31:46 +03:00
|
|
|
output = cmJoin(*components, ";");
|
2016-05-16 17:34:04 +03:00
|
|
|
} else {
|
2016-06-27 23:44:16 +03:00
|
|
|
const char* prop = CM_NULLPTR;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!args[1].empty()) {
|
2015-06-06 10:41:20 +03:00
|
|
|
prop = this->Makefile->GetState()->GetGlobalProperty(args[1]);
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (prop) {
|
2007-06-25 17:51:37 +04:00
|
|
|
output = prop;
|
2003-03-06 19:20:26 +03:00
|
|
|
}
|
2016-05-16 17:34:04 +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;
|
|
|
|
}
|