Return true if the generated build tree may contain multiple builds. i.e. "Can I build Debug and Release in the same tree?"
| 5483 | // Return true if the generated build tree may contain multiple builds. |
| 5484 | // i.e. "Can I build Debug and Release in the same tree?" |
| 5485 | bool cmGlobalXCodeGenerator::IsMultiConfig() const |
| 5486 | { |
| 5487 | // Newer Xcode versions are multi config: |
| 5488 | return true; |
| 5489 | } |
| 5490 | |
| 5491 | bool cmGlobalXCodeGenerator::HasKnownObjectFileLocation( |
| 5492 | cmTarget const& target, std::string* reason) const |
no outgoing calls