summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefile.cxx
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2002-11-13 20:59:40 (GMT)
committerKen Martin <ken.martin@kitware.com>2002-11-13 20:59:40 (GMT)
commit20b7e6b22204b034d204252c0475f292e830ff61 (patch)
treec4e78c77f55addd507270a17ccd0b9255f01ec0f /Source/cmMakefile.cxx
parent19b144bdbf1b582e4ad832247bdeee7017d26263 (diff)
downloadCMake-20b7e6b22204b034d204252c0475f292e830ff61.zip
CMake-20b7e6b22204b034d204252c0475f292e830ff61.tar.gz
CMake-20b7e6b22204b034d204252c0475f292e830ff61.tar.bz2
ENH: space fixes and add a status option to message command
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r--Source/cmMakefile.cxx5
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx
index bc8bf6b..5e8ec98 100644
--- a/Source/cmMakefile.cxx
+++ b/Source/cmMakefile.cxx
@@ -1443,3 +1443,8 @@ bool cmMakefile::GetLocal() const
{
return m_LocalGenerator->GetGlobalGenerator()->GetCMakeInstance()->GetLocal();
}
+void cmMakefile::DisplayStatus(const char* message, float s)
+{
+ this->GetLocalGenerator()->GetGlobalGenerator()
+ ->GetCMakeInstance()->UpdateProgress(message, s);
+}