| 341 | } |
| 342 | |
| 343 | void AddLinkFeature(cmMakefile* makefile, cmTarget* target, |
| 344 | cm::string_view configuration, std::string const& value) |
| 345 | { |
| 346 | if (cmStrCaseEq(value, "thread"_s)) { |
| 347 | AppendProperty(makefile, target, "LINK_LIBRARIES"_s, configuration, |
| 348 | "Threads::Threads"); |
| 349 | } |
| 350 | } |
| 351 | |
| 352 | std::string BuildDefinition(std::string const& name, Json::Value const& value) |
| 353 | { |
no test coverage detected
searching dependent graphs…