Force clang color output when building with Ninja

This commit is contained in:
Strahinja Val Markovic 2013-11-17 11:23:16 -08:00
parent f46f4cbbe0
commit 9c43634190

View File

@ -71,6 +71,12 @@ if ( CMAKE_CXX_COMPILER_ID STREQUAL "Clang" )
if ( NOT DEFINED ENV{TRAVIS} ) if ( NOT DEFINED ENV{TRAVIS} )
set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -stdlib=libc++" ) set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -stdlib=libc++" )
endif() endif()
# Ninja will by default prevent Clang from outputting diagnostics in color, so
# we force color output
if ( CMAKE_GENERATOR STREQUAL "Ninja" )
set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fcolor-diagnostics" )
endif()
endif() endif()
############################################################################# #############################################################################