diff options
author | Brad King <brad.king@kitware.com> | 2006-04-27 01:31:39 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2006-04-27 01:31:39 (GMT) |
commit | 4494c29078d60618b2addb00b4e2bb02e3a2729b (patch) | |
tree | 7fc6a35ba1fa1899bbf2d8887662d26d388c7ed0 /Source/cmGlobalBorlandMakefileGenerator.cxx | |
parent | 92ea0a077cc7f1be8caf9b38937cf5b6b02d15eb (diff) | |
download | CMake-4494c29078d60618b2addb00b4e2bb02e3a2729b.zip CMake-4494c29078d60618b2addb00b4e2bb02e3a2729b.tar.gz CMake-4494c29078d60618b2addb00b4e2bb02e3a2729b.tar.bz2 |
ENH: Enabling color makefile support using cmsysTerminal_cfprintf. Support for color is automatically detected when messages are printed. Also made color scheme more readable on both black and white backgrounds. This option can be enabled by setting CMAKE_COLOR_MAKEFILE to true in the project.
Diffstat (limited to 'Source/cmGlobalBorlandMakefileGenerator.cxx')
-rw-r--r-- | Source/cmGlobalBorlandMakefileGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalBorlandMakefileGenerator.cxx b/Source/cmGlobalBorlandMakefileGenerator.cxx index e33c518..b1efb70 100644 --- a/Source/cmGlobalBorlandMakefileGenerator.cxx +++ b/Source/cmGlobalBorlandMakefileGenerator.cxx @@ -24,7 +24,7 @@ cmGlobalBorlandMakefileGenerator::cmGlobalBorlandMakefileGenerator() this->EmptyRuleHackDepends = "NUL"; this->FindMakeProgramFile = "CMakeBorlandFindMake.cmake"; this->ForceUnixPaths = false; - this->ToolSupportsColorVT100 = false; + this->ToolSupportsColor = true; } |