summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalUnixMakefileGenerator3.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2006-04-08 18:15:06 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2006-04-08 18:15:06 (GMT)
commit2238e2269943e7ea20857fb13dcf0b679e0daf23 (patch)
tree5e419a66ba90de113f4e878f968df1ffd1aca0af /Source/cmLocalUnixMakefileGenerator3.cxx
parent604ec6b7646dfe68c334d3288835a6aa03a87417 (diff)
downloadCMake-2238e2269943e7ea20857fb13dcf0b679e0daf23.zip
CMake-2238e2269943e7ea20857fb13dcf0b679e0daf23.tar.gz
CMake-2238e2269943e7ea20857fb13dcf0b679e0daf23.tar.bz2
ENH: make sure verbose output is used for kde
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator3.cxx')
-rw-r--r--Source/cmLocalUnixMakefileGenerator3.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.cxx b/Source/cmLocalUnixMakefileGenerator3.cxx
index 2068fce..303470f 100644
--- a/Source/cmLocalUnixMakefileGenerator3.cxx
+++ b/Source/cmLocalUnixMakefileGenerator3.cxx
@@ -69,6 +69,7 @@ cmLocalUnixMakefileGenerator3::cmLocalUnixMakefileGenerator3()
this->EchoNeedsQuote = true;
this->DefineWindowsNULL = false;
this->UnixCD = true;
+ this->ForceVerboseMakefiles=false;
}
//----------------------------------------------------------------------------
@@ -599,7 +600,7 @@ cmLocalUnixMakefileGenerator3
std::vector<std::string> commands;
std::vector<std::string> no_depends;
commands.clear();
- if(this->Makefile->IsOn("CMAKE_VERBOSE_MAKEFILE"))
+ if((this->Makefile->IsOn("CMAKE_VERBOSE_MAKEFILE")) || (this->ForceVerboseMakefiles))
{
makefileStream
<< "# Produce verbose output by default.\n"