diff options
author | Brad King <brad.king@kitware.com> | 2006-03-30 20:39:03 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2006-03-30 20:39:03 (GMT) |
commit | eb31755eb204e3c7981961442ef80858cb8d4ff5 (patch) | |
tree | 73048c448f7561e606e857339be3bfcba9299e07 /Source/cmGlobalKdevelopGenerator.cxx | |
parent | 5a2668b326471874ca69357af831cdcf1575c621 (diff) | |
download | CMake-eb31755eb204e3c7981961442ef80858cb8d4ff5.zip CMake-eb31755eb204e3c7981961442ef80858cb8d4ff5.tar.gz CMake-eb31755eb204e3c7981961442ef80858cb8d4ff5.tar.bz2 |
ENH: Implemented VT100 terminal escape sequences. If CMAKE_COLOR_MAKEFILE is set then messages produced by makefiles will be in color if the native tool supports it. This addresses bug#3060.
Diffstat (limited to 'Source/cmGlobalKdevelopGenerator.cxx')
-rw-r--r-- | Source/cmGlobalKdevelopGenerator.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmGlobalKdevelopGenerator.cxx b/Source/cmGlobalKdevelopGenerator.cxx index 5e0a46d..527aea5 100644 --- a/Source/cmGlobalKdevelopGenerator.cxx +++ b/Source/cmGlobalKdevelopGenerator.cxx @@ -28,6 +28,7 @@ cmGlobalKdevelopGenerator::cmGlobalKdevelopGenerator() // This type of makefile always requires unix style paths this->ForceUnixPaths = true; this->FindMakeProgramFile = "CMakeUnixFindMake.cmake"; + this->ToolSupportsColorVT100 = false; } ///! Create a local generator appropriate to this Global Generator |