summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Source/cmGraphVizWriter.cxx5
-rw-r--r--Source/cmGraphVizWriter.h4
2 files changed, 5 insertions, 4 deletions
diff --git a/Source/cmGraphVizWriter.cxx b/Source/cmGraphVizWriter.cxx
index b62badf..94918a5 100644
--- a/Source/cmGraphVizWriter.cxx
+++ b/Source/cmGraphVizWriter.cxx
@@ -164,7 +164,7 @@ void cmGraphVizWriter::WritePerTargetFiles(const char* fileName)
return;
}
- fprintf(stderr, "Writing %s...\n", currentFilename.c_str());
+ std::cout << "Writing " << currentFilename << "..." << std::endl;
this->WriteHeader(str);
this->WriteConnections(ptrIt->first.c_str(),
@@ -184,7 +184,8 @@ void cmGraphVizWriter::WriteGlobalFile(const char* fileName)
}
this->WriteHeader(str);
- fprintf(stderr, "Writing %s...\n", fileName);
+ std::cout << "Writing " << fileName << "..." << std::endl;
+
std::set<std::string> insertedConnections;
std::set<std::string> insertedNodes;
diff --git a/Source/cmGraphVizWriter.h b/Source/cmGraphVizWriter.h
index af8b716..c9e5fbd 100644
--- a/Source/cmGraphVizWriter.h
+++ b/Source/cmGraphVizWriter.h
@@ -65,14 +65,14 @@ protected:
bool GenerateForSharedLibs;
bool GenerateForModuleLibs;
+ std::set<cmStdString> TargetsToIgnore;
+
const std::vector<cmLocalGenerator*>& LocalGenerators;
std::map<cmStdString, const cmTarget*> TargetPtrs;
// maps from the actual target names to node names in dot:
std::map<cmStdString, cmStdString> TargetNamesNodes;
- std::set<cmStdString> TargetsToIgnore;
-
};
#endif