From 1cc01a840df17ab52b7947a10b8ce79fade802f6 Mon Sep 17 00:00:00 2001 From: Leonetienne Date: Sun, 22 May 2022 12:51:29 +0200 Subject: [PATCH] Cmake specify color output as always --- GCryptLib/CMakeLists.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/GCryptLib/CMakeLists.txt b/GCryptLib/CMakeLists.txt index 2e0a2bb..0efcb68 100644 --- a/GCryptLib/CMakeLists.txt +++ b/GCryptLib/CMakeLists.txt @@ -15,7 +15,10 @@ target_include_directories(${PROJECT_NAME} PRIVATE include ) -target_compile_options(${PROJECT_NAME} PRIVATE -Werror) +target_compile_options(${PROJECT_NAME} PRIVATE + -Werror + -fdiagnostics-color=always +) ######### # Tests #