Re: [CMake] CMAKE_COLOR_MAKEFILE

2015-06-14 Thread Gregor Jasny via CMake
On 10/06/15 04:17, Dave Yost wrote: Hey, I love colors. But one of my users doesn’t. You could try the Ninja generator instead of Makefile. It much often faster, as verbose as necessary, and black'n'white. Thanks, Gregor -- Powered by www.kitware.com Please keep messages on-topic and check

Re: [CMake] CMAKE_COLOR_MAKEFILE

2015-06-09 Thread Iosif Neitzke
The CMake variable CMAKE_COLOR_MAKEFILE sets the preference to generate a colored Makefile at Configure time. At Build time, regardless if CMAKE_COLOR_MAKEFILE=ON, you can use 'make target COLOR=0' to turn off Makefile color dynamically. Running through cmake with 'cmake --build dir -- COLOR=0'