2016-09-27 22:01:08 +03:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2001-04-20 01:39:03 +04:00
|
|
|
#include "cmAddDefinitionsCommand.h"
|
|
|
|
|
|
|
|
// cmAddDefinitionsCommand
|
2016-05-16 17:34:04 +03:00
|
|
|
bool cmAddDefinitionsCommand::InitialPass(std::vector<std::string> const& args,
|
|
|
|
cmExecutionStatus&)
|
2001-04-20 01:39:03 +04:00
|
|
|
{
|
2002-07-20 16:55:55 +04:00
|
|
|
// it is OK to have no arguments
|
2016-09-16 00:59:29 +03:00
|
|
|
if (args.empty()) {
|
2002-07-20 16:55:55 +04:00
|
|
|
return true;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2002-03-29 22:20:32 +03:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
for (std::vector<std::string>::const_iterator i = args.begin();
|
|
|
|
i != args.end(); ++i) {
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Makefile->AddDefineFlag(i->c_str());
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2001-04-20 01:39:03 +04:00
|
|
|
return true;
|
|
|
|
}
|