summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2015-07-14 17:55:09 (GMT)
committerBrad King <brad.king@kitware.com>2015-07-14 17:57:58 (GMT)
commitd560b46f5232f84476d68d96d44e5e755d391090 (patch)
tree973871ed48793855bd98f966012d26a0d87bf482
parent7a409983292e0917cf1299d55ca601a92fd4a36e (diff)
downloadCMake-d560b46f5232f84476d68d96d44e5e755d391090.zip
CMake-d560b46f5232f84476d68d96d44e5e755d391090.tar.gz
CMake-d560b46f5232f84476d68d96d44e5e755d391090.tar.bz2
CMakeGenericSystem: Recognize Watcom WMake generator as Makefile generator
-rw-r--r--Modules/CMakeGenericSystem.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/CMakeGenericSystem.cmake b/Modules/CMakeGenericSystem.cmake
index 8a14aea..730e780 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."
)