Compare commits

...

1 Commits

Author SHA1 Message Date
Daniel Agar 5911871869 Revert "cmake: Limit color output to terminals"
This reverts commit c1da999748.
2021-02-18 14:44:44 -05:00
1 changed files with 2 additions and 2 deletions

View File

@ -114,8 +114,8 @@ function(px4_add_common_flags)
elseif ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
if(CMAKE_CXX_COMPILER_VERSION VERSION_GREATER 4.9)
# enable color for gcc > 4.9 when stdout is terminal
add_compile_options(-fdiagnostics-color=auto)
# force color for gcc > 4.9
add_compile_options(-fdiagnostics-color=always)
endif()
if(CMAKE_CXX_COMPILER_VERSION VERSION_GREATER 9.3)