From 9b2460077951bcdd3137f82c961bd8fc4645c2fc Mon Sep 17 00:00:00 2001 From: Nico Weber Date: Sun, 3 Apr 2022 10:28:21 -0400 Subject: [PATCH] Meta: Give Lagom build errors colored diagnostics Non-lagom builds get this from the root CMakeLists.txt file, but lagom builds didn't before this change. --- Meta/Lagom/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/Meta/Lagom/CMakeLists.txt b/Meta/Lagom/CMakeLists.txt index 7ff8693f33..bd4403889c 100644 --- a/Meta/Lagom/CMakeLists.txt +++ b/Meta/Lagom/CMakeLists.txt @@ -68,6 +68,7 @@ add_compile_options(-Wall -Wextra -Werror) add_compile_options(-fPIC -g) add_compile_options(-Wno-maybe-uninitialized) add_compile_options(-fno-exceptions) +add_compile_options(-fdiagnostics-color=always) if (NOT ENABLE_FUZZERS) add_compile_options(-fno-semantic-interposition) endif()