diff options
author | Sergey Bugaev <bugaevc@serenityos.org> | 2020-05-15 10:53:14 +0300 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-05-15 10:01:35 +0200 |
commit | 32f8e57834515d835fc8998af943cb3b4ab4ad36 (patch) | |
tree | 13b7ae2cc8792ea0a79b334cffdc7b07ff7d9bef | |
parent | 486540fa90e92d6f4717a883c427677d2093bbaa (diff) | |
download | serenity-32f8e57834515d835fc8998af943cb3b4ab4ad36.zip |
Build: Ask GCC to always emit colorful diagnostics
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index d5a4c11551..15a365601c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -14,7 +14,7 @@ add_custom_target(run USES_TERMINAL ) -set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wextra -Werror -std=c++2a") +set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wextra -Werror -std=c++2a -fdiagnostics-color=always") include_directories(Libraries) include_directories(.) |