diff options
author | Alex Neundorf <neundorf@kde.org> | 2010-11-11 21:06:09 (GMT) |
---|---|---|
committer | Alex Neundorf <neundorf@kde.org> | 2010-11-11 21:06:09 (GMT) |
commit | a02987a0df46121ba8dfe07374412d9b20b2606b (patch) | |
tree | 81c87655cd08370f8e68d8575074636d343ff24f /Source/cmExtraCodeBlocksGenerator.cxx | |
parent | 7b1421b88553f4c1fa685be5bd84a5e950490317 (diff) | |
download | CMake-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/cmExtraCodeBlocksGenerator.cxx')
-rw-r--r-- | Source/cmExtraCodeBlocksGenerator.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/cmExtraCodeBlocksGenerator.cxx b/Source/cmExtraCodeBlocksGenerator.cxx index 822d62a..191ad2c 100644 --- a/Source/cmExtraCodeBlocksGenerator.cxx +++ b/Source/cmExtraCodeBlocksGenerator.cxx @@ -70,7 +70,6 @@ void cmExtraCodeBlocksGenerator::SetGlobalGenerator( cmGlobalUnixMakefileGenerator3* mf = (cmGlobalUnixMakefileGenerator3*) generator; mf->SetToolSupportsColor(false); - mf->SetForceVerboseMakefiles(true); } void cmExtraCodeBlocksGenerator::Generate() @@ -695,6 +694,7 @@ std::string cmExtraCodeBlocksGenerator::BuildMakeCommand( command += " /NOLOGO /f ""; command += makefileName; command += "" "; + command += " VERBOSE=1 "; command += target; } else if (strcmp(this->GlobalGenerator->GetName(), "MinGW Makefiles")==0) @@ -705,6 +705,7 @@ std::string cmExtraCodeBlocksGenerator::BuildMakeCommand( command += " -f ""; command += makefileName; command += "" "; + command += " VERBOSE=1 "; command += target; } else @@ -713,6 +714,7 @@ std::string cmExtraCodeBlocksGenerator::BuildMakeCommand( command += " -f ""; command += makefileName; command += "" "; + command += " VERBOSE=1 "; command += target; } return command; |