The open source OpenXR runtime
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

cmake: Use fancy colors on AppleClang too

+4 -1
+4 -1
CMakeLists.txt
··· 478 478 if(NOT DISABLE_COLORED_OUTPUT) 479 479 if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU") 480 480 add_compile_options(-fdiagnostics-color=always) 481 - elseif("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang") 481 + elseif( 482 + "${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang" OR "${CMAKE_CXX_COMPILER_ID}" STREQUAL 483 + "AppleClang" 484 + ) 482 485 add_compile_options(-fcolor-diagnostics) 483 486 endif() 484 487 endif()