diff options
author | Nico Weber <thakis@chromium.org> | 2022-04-03 10:28:21 -0400 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-04-03 19:16:03 +0200 |
commit | 9b2460077951bcdd3137f82c961bd8fc4645c2fc (patch) | |
tree | 00d36aa3e6f3e3dc0c87ed4b6796cd243137dc2f /Meta/Lagom | |
parent | de7aa806690e2b610041a7641b84db2b16a8944a (diff) | |
download | serenity-9b2460077951bcdd3137f82c961bd8fc4645c2fc.zip |
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.
Diffstat (limited to 'Meta/Lagom')
-rw-r--r-- | Meta/Lagom/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
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() |