diff options
author | Alexander Neundorf <neundorf@kde.org> | 2009-01-10 13:16:39 (GMT) |
---|---|---|
committer | Alexander Neundorf <neundorf@kde.org> | 2009-01-10 13:16:39 (GMT) |
commit | 0f38be1561104857509960390ea6d37cc15a2ba8 (patch) | |
tree | 6c2443df10a5ea1695b017d5d7af96a9a570c457 /Source/cmDocumentVariables.cxx | |
parent | 992953bcfea60a6b0cfaf5546483f42075cb5675 (diff) | |
download | CMake-0f38be1561104857509960390ea6d37cc15a2ba8.zip CMake-0f38be1561104857509960390ea6d37cc15a2ba8.tar.gz CMake-0f38be1561104857509960390ea6d37cc15a2ba8.tar.bz2 |
STYLE: document CMAKE_COLOR_MAKEFILE (#7878)
Alex
Diffstat (limited to 'Source/cmDocumentVariables.cxx')
-rw-r--r-- | Source/cmDocumentVariables.cxx | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/Source/cmDocumentVariables.cxx b/Source/cmDocumentVariables.cxx index a6d06f0..c872d90 100644 --- a/Source/cmDocumentVariables.cxx +++ b/Source/cmDocumentVariables.cxx @@ -576,9 +576,16 @@ void cmDocumentVariables::DefineVariables(cmake* cm) "add_executable(CMakeSetup WIN32 ${SRCS})\n",false, "Variables That Change Behavior"); - + cm->DefineProperty + ("CMAKE_COLOR_MAKEFILE", cmProperty::VARIABLE, + "Enables color output when using the Makefile generator.", + "When enabled, the generated Makefiles will produce colored output. " + "Default is ON.",false, + "Variables That Change Behavior"); + + // Variables defined by CMake that describe the system - + cm->DefineProperty ("CMAKE_SYSTEM", cmProperty::VARIABLE, "Name of system cmake is compiling for.", |