| 5386 | } |
| 5387 | |
| 5388 | void cmGlobalXCodeGenerator::AppendDefines(BuildObjectListOrString& defs, |
| 5389 | char const* defines_list, |
| 5390 | bool dflag) |
| 5391 | { |
| 5392 | // Skip this if there are no definitions. |
| 5393 | if (!defines_list) { |
| 5394 | return; |
| 5395 | } |
| 5396 | |
| 5397 | // Expand the list of definitions. |
| 5398 | cmList defines{ defines_list }; |
| 5399 | |
| 5400 | // Store the definitions in the string. |
| 5401 | this->AppendDefines(defs, defines, dflag); |
| 5402 | } |
| 5403 | |
| 5404 | void cmGlobalXCodeGenerator::AppendDefines( |
| 5405 | BuildObjectListOrString& defs, std::vector<std::string> const& defines, |
no test coverage detected