diff options
author | Ken Martin <ken.martin@kitware.com> | 2002-11-13 20:59:40 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2002-11-13 20:59:40 (GMT) |
commit | 20b7e6b22204b034d204252c0475f292e830ff61 (patch) | |
tree | c4e78c77f55addd507270a17ccd0b9255f01ec0f /Source/cmMakefile.cxx | |
parent | 19b144bdbf1b582e4ad832247bdeee7017d26263 (diff) | |
download | CMake-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.cxx | 5 |
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); +} |