summaryrefslogtreecommitdiff
path: root/Modules/CMakeGenericSystem.cmake
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2015-07-14 13:55:09 -0400
committerBrad King <brad.king@kitware.com>2015-07-14 13:57:58 -0400
commitd560b46f5232f84476d68d96d44e5e755d391090 (patch)
tree973871ed48793855bd98f966012d26a0d87bf482 /Modules/CMakeGenericSystem.cmake
parent7a409983292e0917cf1299d55ca601a92fd4a36e (diff)
downloadcmake-d560b46f5232f84476d68d96d44e5e755d391090.tar.gz
CMakeGenericSystem: Recognize Watcom WMake generator as Makefile generator
Diffstat (limited to 'Modules/CMakeGenericSystem.cmake')
-rw-r--r--Modules/CMakeGenericSystem.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/CMakeGenericSystem.cmake b/Modules/CMakeGenericSystem.cmake
index 8a14aea604..730e78062c 100644
--- a/Modules/CMakeGenericSystem.cmake
+++ b/Modules/CMakeGenericSystem.cmake
@@ -44,7 +44,7 @@ set (CMAKE_SKIP_INSTALL_RPATH "NO" CACHE BOOL
set(CMAKE_VERBOSE_MAKEFILE FALSE CACHE BOOL "If this value is on, makefiles will be generated without the .SILENT directive, and all commands will be echoed to the console during the make. This is useful for debugging only. With Visual Studio IDE projects all commands are done without /nologo.")
-if(CMAKE_GENERATOR MATCHES "Makefiles")
+if(CMAKE_GENERATOR MATCHES "Make")
set(CMAKE_COLOR_MAKEFILE ON CACHE BOOL
"Enable/Disable color output during build."
)