| /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying |
| file Copyright.txt or https://cmake.org/licensing for details. */ |
| #include "cmSetDirectoryPropertiesCommand.h" |
| #include "cmExecutionStatus.h" |
| // cmSetDirectoryPropertiesCommand |
| bool cmSetDirectoryPropertiesCommand(std::vector<std::string> const& args, |
| cmExecutionStatus& status) |
| status.SetError("called with incorrect number of arguments"); |
| // PROPERTIES followed by prop value pairs |
| if (args.size() % 2 != 1) { |
| status.SetError("Wrong number of arguments"); |
| for (auto iter = args.begin() + 1; iter != args.end(); iter += 2) { |
| std::string const& prop = *iter; |
| if (prop == "VARIABLES") { |
| "Variables and cache variables should be set using SET command"); |
| "Commands and macros cannot be set using SET_CMAKE_PROPERTIES"); |
| status.GetMakefile().SetProperty(prop, *(iter + 1)); |