| 2243 | |
| 2244 | namespace { |
| 2245 | void ReplaceScriptVars(std::string& cmd) |
| 2246 | { |
| 2247 | cmSystemTools::ReplaceString(cmd, "$(CONFIGURATION)", "$CONFIGURATION"); |
| 2248 | cmSystemTools::ReplaceString(cmd, "$(EFFECTIVE_PLATFORM_NAME)", |
| 2249 | "$EFFECTIVE_PLATFORM_NAME"); |
| 2250 | } |
| 2251 | } |
| 2252 | |
| 2253 | std::string cmGlobalXCodeGenerator::ConstructScript( |
no outgoing calls
no test coverage detected
searching dependent graphs…