parent
7ba2d36585
commit
2a5790a080
|
@ -164,7 +164,7 @@ void cmGraphVizWriter::WritePerTargetFiles(const char* fileName)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
fprintf(stderr, "Writing %s...\n", currentFilename.c_str());
|
std::cout << "Writing " << currentFilename << "..." << std::endl;
|
||||||
this->WriteHeader(str);
|
this->WriteHeader(str);
|
||||||
|
|
||||||
this->WriteConnections(ptrIt->first.c_str(),
|
this->WriteConnections(ptrIt->first.c_str(),
|
||||||
|
@ -184,7 +184,8 @@ void cmGraphVizWriter::WriteGlobalFile(const char* fileName)
|
||||||
}
|
}
|
||||||
this->WriteHeader(str);
|
this->WriteHeader(str);
|
||||||
|
|
||||||
fprintf(stderr, "Writing %s...\n", fileName);
|
std::cout << "Writing " << fileName << "..." << std::endl;
|
||||||
|
|
||||||
std::set<std::string> insertedConnections;
|
std::set<std::string> insertedConnections;
|
||||||
std::set<std::string> insertedNodes;
|
std::set<std::string> insertedNodes;
|
||||||
|
|
||||||
|
|
|
@ -65,14 +65,14 @@ protected:
|
||||||
bool GenerateForSharedLibs;
|
bool GenerateForSharedLibs;
|
||||||
bool GenerateForModuleLibs;
|
bool GenerateForModuleLibs;
|
||||||
|
|
||||||
|
std::set<cmStdString> TargetsToIgnore;
|
||||||
|
|
||||||
const std::vector<cmLocalGenerator*>& LocalGenerators;
|
const std::vector<cmLocalGenerator*>& LocalGenerators;
|
||||||
|
|
||||||
std::map<cmStdString, const cmTarget*> TargetPtrs;
|
std::map<cmStdString, const cmTarget*> TargetPtrs;
|
||||||
// maps from the actual target names to node names in dot:
|
// maps from the actual target names to node names in dot:
|
||||||
std::map<cmStdString, cmStdString> TargetNamesNodes;
|
std::map<cmStdString, cmStdString> TargetNamesNodes;
|
||||||
|
|
||||||
std::set<cmStdString> TargetsToIgnore;
|
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue