| 916 | } |
| 917 | |
| 918 | void cmGlobalXCodeGenerator::ClearXCodeObjects() |
| 919 | { |
| 920 | this->TargetDoneSet.clear(); |
| 921 | this->XCodeObjects.clear(); |
| 922 | this->XCodeObjectIDs.clear(); |
| 923 | this->XCodeObjectMap.clear(); |
| 924 | this->GroupMap.clear(); |
| 925 | this->GroupNameMap.clear(); |
| 926 | this->TargetGroup.clear(); |
| 927 | this->FileRefs.clear(); |
| 928 | this->ExternalLibRefs.clear(); |
| 929 | this->FileRefToBuildFileMap.clear(); |
| 930 | this->FileRefToEmbedBuildFileMap.clear(); |
| 931 | this->CommandsVisited.clear(); |
| 932 | } |
| 933 | |
| 934 | void cmGlobalXCodeGenerator::addObject(std::unique_ptr<cmXCodeObject> obj) |
| 935 | { |
no test coverage detected