1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 06:27:45 +00:00

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.
This commit is contained in:
Nico Weber 2022-04-03 10:28:21 -04:00 committed by Andreas Kling
parent de7aa80669
commit 9b24600779

View file

@ -68,6 +68,7 @@ add_compile_options(-Wall -Wextra -Werror)
add_compile_options(-fPIC -g) add_compile_options(-fPIC -g)
add_compile_options(-Wno-maybe-uninitialized) add_compile_options(-Wno-maybe-uninitialized)
add_compile_options(-fno-exceptions) add_compile_options(-fno-exceptions)
add_compile_options(-fdiagnostics-color=always)
if (NOT ENABLE_FUZZERS) if (NOT ENABLE_FUZZERS)
add_compile_options(-fno-semantic-interposition) add_compile_options(-fno-semantic-interposition)
endif() endif()