From fea42ce7dd10ad330e699bbaf5d319f32a488cf2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?D=C3=A1vid=20Bolvansk=C3=BD?= Date: Mon, 5 Sep 2022 17:29:06 +0200 Subject: [PATCH] cmake: Fixed multi line comment (#3513) --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 3205f1df1ca..81edcda35da 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -265,8 +265,8 @@ if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU" OR CMAKE_CXX_COMPILER_ID STREQUAL "Clan unset(_LD_OPT_USED) endif() -set(BUILD_USE_COLOR OFF CACHE BOOL "Use color in C++ compiler output (even if " - "the compiler does not detect terminal, e.g. when using ccache/distcc)") +set(BUILD_USE_COLOR OFF CACHE BOOL "Use color in C++ compiler output (even if \ + the compiler does not detect terminal, e.g. when using ccache/distcc)") if (BUILD_USE_COLOR) if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU" OR CMAKE_CXX_COMPILER_ID STREQUAL "Clang") set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fdiagnostics-color=always")