From a9d460d0960926990fc6ffc2f4b9c0a9e880ced4 Mon Sep 17 00:00:00 2001 From: Username404 Date: Mon, 8 Aug 2022 11:22:30 +0200 Subject: [PATCH] CMakeLists.txt: Set CMAKE_COLOR_DIAGNOSTICS to ON Signed-off-by: Username404 --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1016fb4..94377d9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -30,6 +30,7 @@ else() endif() set(CMAKE_CXX_FLAGS "-Wall") set(CMAKE_CXX_FLAGS_RELEASE "-Os") +set(CMAKE_COLOR_DIAGNOSTICS ON) set(MINIMAL_GNU "11.0") set(MINIMAL_CLANG "14.0.1") set(MINIMAL_MSVC "19.30")