summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalGenerator.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2006-04-27 01:31:39 (GMT)
committerBrad King <brad.king@kitware.com>2006-04-27 01:31:39 (GMT)
commit4494c29078d60618b2addb00b4e2bb02e3a2729b (patch)
tree7fc6a35ba1fa1899bbf2d8887662d26d388c7ed0 /Source/cmGlobalGenerator.h
parent92ea0a077cc7f1be8caf9b38937cf5b6b02d15eb (diff)
downloadCMake-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/cmGlobalGenerator.h')
-rw-r--r--Source/cmGlobalGenerator.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmGlobalGenerator.h b/Source/cmGlobalGenerator.h
index 9325107..e8f2634 100644
--- a/Source/cmGlobalGenerator.h
+++ b/Source/cmGlobalGenerator.h
@@ -127,7 +127,7 @@ public:
static int s_TryCompileTimeout;
bool GetForceUnixPaths() {return this->ForceUnixPaths;}
- bool GetToolSupportsColorVT100() { return this->ToolSupportsColorVT100; }
+ bool GetToolSupportsColor() { return this->ToolSupportsColor; }
///! return the language for the given extension
const char* GetLanguageFromExtension(const char* ext);
///! is an extension to be ignored
@@ -204,7 +204,7 @@ protected:
std::vector<std::string> depends, bool depends_on_all = false);
bool ForceUnixPaths;
- bool ToolSupportsColorVT100;
+ bool ToolSupportsColor;
cmStdString FindMakeProgramFile;
cmStdString ConfiguredFilesPath;
cmake *CMakeInstance;