| 358 | } |
| 359 | |
| 360 | void AddDefinition(cmMakefile* makefile, cmTarget* target, |
| 361 | cm::string_view configuration, |
| 362 | std::string const& definition) |
| 363 | { |
| 364 | AppendProperty(makefile, target, "COMPILE_DEFINITIONS"_s, configuration, |
| 365 | definition); |
| 366 | } |
| 367 | |
| 368 | using DefinitionLanguageMap = std::map<cm::string_view, Json::Value>; |
| 369 | using DefinitionsMap = std::map<std::string, DefinitionLanguageMap>; |
no test coverage detected
searching dependent graphs…