From 8f049300e87c0c787e043ba60d7775c09751dc6e Mon Sep 17 00:00:00 2001 From: Aleksoid Date: Wed, 10 Sep 2025 09:19:18 +1000 Subject: [PATCH] CMakeLists.txt - correction of the MSVC_CLANG_CL variable setting. --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index fcf034b19..c10072c7d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -15,10 +15,10 @@ include(CMakeDependentOption) include(FeatureSummary) # Detect clang-cl -set(MSVC_CLANG_CL false BOOL) +set(MSVC_CLANG_CL FALSE) if (MSVC) if("${CMAKE_C_COMPILER_ID}" MATCHES "Clang") - set(MSVC_CLANG_CL true BOOL) + set(MSVC_CLANG_CL TRUE) endif() endif()