ENH: don't enforce VERBOSE Makefiles, but set the env. var VERBOSE to 1 in
when make is executed from within Eclipse. This way when building from the command line one can build also in non-verbose mode. Alex
This commit is contained in:
parent
cbb7a509e8
commit
f40f867be6
|
@ -95,7 +95,6 @@ void cmExtraEclipseCDT4Generator
|
|||
cmGlobalUnixMakefileGenerator3* mf
|
||||
= static_cast<cmGlobalUnixMakefileGenerator3*>(generator);
|
||||
mf->SetToolSupportsColor(true);
|
||||
mf->SetForceVerboseMakefiles(true);
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------------
|
||||
|
@ -251,6 +250,7 @@ void cmExtraEclipseCDT4Generator::CreateProjectFile()
|
|||
fout <<
|
||||
"\t\t\t\t<dictionary>\n"
|
||||
"\t\t\t\t\t<key>org.eclipse.cdt.make.core.environment</key>\n"
|
||||
"\t\t\t\t\t<value>VERBOSE=1|</value>\n" // enforce VERBOSE Makefile output
|
||||
"\t\t\t\t\t<value>"
|
||||
;
|
||||
// set vsvars32.bat environment available at CMake time,
|
||||
|
|
Loading…
Reference in New Issue