summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefile.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2001-04-27 13:32:55 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2001-04-27 13:32:55 (GMT)
commite14ecec4c7f1c950b65366d776b108eb353bbaf1 (patch)
treeb04cd1bf6c97a0ea7bf2e9a7778b966562a6eb38 /Source/cmMakefile.cxx
parent07bd60f6b3db36fdaf13661f70e8bb7507317254 (diff)
downloadCMake-e14ecec4c7f1c950b65366d776b108eb353bbaf1.zip
CMake-e14ecec4c7f1c950b65366d776b108eb353bbaf1.tar.gz
CMake-e14ecec4c7f1c950b65366d776b108eb353bbaf1.tar.bz2
ENH: add output when creating files
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r--Source/cmMakefile.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx
index 30c9c03..e72f28a 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());