From e14ecec4c7f1c950b65366d776b108eb353bbaf1 Mon Sep 17 00:00:00 2001 From: Bill Hoffman Date: Fri, 27 Apr 2001 09:32:55 -0400 Subject: [PATCH] ENH: add output when creating files --- Source/cmMakefile.cxx | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index 30c9c03ff..e72f28afb 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -648,6 +648,7 @@ void cmMakefile::GenerateCacheOnly() std::string dest = mf->GetStartOutputDirectory(); dest += "/Makefile"; std::ofstream fout(dest.c_str()); + std::cout << "cmake: creating : " << dest.c_str() << "\n"; if(!fout) { cmSystemTools::Error("Failed to open file for write " , dest.c_str());