summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalUnixMakefileGenerator3.cxx
diff options
context:
space:
mode:
authorAlex Neundorf <neundorf@kde.org>2010-11-11 21:06:09 (GMT)
committerAlex Neundorf <neundorf@kde.org>2010-11-11 21:06:09 (GMT)
commita02987a0df46121ba8dfe07374412d9b20b2606b (patch)
tree81c87655cd08370f8e68d8575074636d343ff24f /Source/cmLocalUnixMakefileGenerator3.cxx
parent7b1421b88553f4c1fa685be5bd84a5e950490317 (diff)
downloadCMake-a02987a0df46121ba8dfe07374412d9b20b2606b.zip
CMake-a02987a0df46121ba8dfe07374412d9b20b2606b.tar.gz
CMake-a02987a0df46121ba8dfe07374412d9b20b2606b.tar.bz2
Don't enforce VERBOSE makefiles for the CodeBlocks generator
Instead of enforcing verbose makefile, now the generated build command includes "VERBOSE=1" so the output will be verbose when building in C::B. Also removed the now unused setForceVerboseMakefiles(). Alex
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator3.cxx')
-rw-r--r--Source/cmLocalUnixMakefileGenerator3.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.cxx b/Source/cmLocalUnixMakefileGenerator3.cxx
index 51566e0..c5d8c0d 100644
--- a/Source/cmLocalUnixMakefileGenerator3.cxx
+++ b/Source/cmLocalUnixMakefileGenerator3.cxx
@@ -722,8 +722,7 @@ cmLocalUnixMakefileGenerator3
// "VERBOSE=1" to be added as a make variable which will change the
// name of this special target. This gives a make-time choice to
// the user.
- if((this->Makefile->IsOn("CMAKE_VERBOSE_MAKEFILE"))
- || (gg->GetForceVerboseMakefiles()))
+ if(this->Makefile->IsOn("CMAKE_VERBOSE_MAKEFILE"))
{
makefileStream
<< "# Produce verbose output by default.\n"