Skip to content

Instantly share code, notes, and snippets.

@MATRIXKOO
Created March 31, 2022 05:11
Show Gist options
  • Save MATRIXKOO/7e5ca17351ca4c444e3ebaf60fef590a to your computer and use it in GitHub Desktop.
Save MATRIXKOO/7e5ca17351ca4c444e3ebaf60fef590a to your computer and use it in GitHub Desktop.
option (FORCE_COLORED_OUTPUT "Always produce ANSI-colored output (GNU/Clang only)." FALSE)if (${FORCE_COLORED_OUTPUT})
if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
add_compile_options (-fdiagnostics-color=always)
elseif ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang")
add_compile_options (-fcolor-diagnostics)
endif ()
endif ()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment