diff options
-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.", |