diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-05-16 03:23:06 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-05-18 18:06:20 (GMT) |
commit | 684e5cefb239263f39089cacbffba28d4c61251a (patch) | |
tree | f859f28b7df6695e676fbbf91321a7cf07d3cf80 /Source/cmGlobalJOMMakefileGenerator.cxx | |
parent | 2047144f490113905004cc9d5b548e25312fac04 (diff) | |
download | CMake-684e5cefb239263f39089cacbffba28d4c61251a.zip CMake-684e5cefb239263f39089cacbffba28d4c61251a.tar.gz CMake-684e5cefb239263f39089cacbffba28d4c61251a.tar.bz2 |
cmGlobalGenerator: Host the MakeSilentFlag.
Diffstat (limited to 'Source/cmGlobalJOMMakefileGenerator.cxx')
-rw-r--r-- | Source/cmGlobalJOMMakefileGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalJOMMakefileGenerator.cxx b/Source/cmGlobalJOMMakefileGenerator.cxx index 799c9fb..9f0698d 100644 --- a/Source/cmGlobalJOMMakefileGenerator.cxx +++ b/Source/cmGlobalJOMMakefileGenerator.cxx @@ -24,6 +24,7 @@ cmGlobalJOMMakefileGenerator::cmGlobalJOMMakefileGenerator() this->DefineWindowsNULL = true; this->PassMakeflags = true; this->UnixCD = false; + this->MakeSilentFlag = "/nologo"; } void cmGlobalJOMMakefileGenerator @@ -55,7 +56,6 @@ cmGlobalJOMMakefileGenerator::CreateLocalGenerator(cmLocalGenerator* parent) { cmLocalUnixMakefileGenerator3* lg = new cmLocalUnixMakefileGenerator3(this, parent); - lg->SetMakeSilentFlag("/nologo"); return lg; } |