diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-10-29 14:56:49 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-10-29 14:56:49 (GMT) |
commit | 3b7c4b2a7b784a767bcf31774014d06b97c98d4f (patch) | |
tree | b83d17440967a7e7589b7a510060f5c518f9f61c /Source/cmGlobalGenerator.cxx | |
parent | ac2859aaa36ad25ff71da0a2dae54b84e6378897 (diff) | |
download | CMake-3b7c4b2a7b784a767bcf31774014d06b97c98d4f.zip CMake-3b7c4b2a7b784a767bcf31774014d06b97c98d4f.tar.gz CMake-3b7c4b2a7b784a767bcf31774014d06b97c98d4f.tar.bz2 |
ENH: More scripting changes
Diffstat (limited to 'Source/cmGlobalGenerator.cxx')
-rw-r--r-- | Source/cmGlobalGenerator.cxx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Source/cmGlobalGenerator.cxx b/Source/cmGlobalGenerator.cxx index 85f197f..0911422 100644 --- a/Source/cmGlobalGenerator.cxx +++ b/Source/cmGlobalGenerator.cxx @@ -371,7 +371,10 @@ void cmGlobalGenerator::Configure() "Please set the following variables:\n", notFoundVars.c_str()); } - m_CMakeInstance->UpdateProgress("Configuring done", -1); + if ( !m_CMakeInstance->GetScriptMode() ) + { + m_CMakeInstance->UpdateProgress("Configuring done", -1); + } } // loop through the directories creating cmLocalGenerators and Configure() |