From c41007624f96204ab6e4a061824ab22be39cf3e4 Mon Sep 17 00:00:00 2001 From: Serge Gautherie Date: Sat, 10 Apr 2021 04:12:48 +0200 Subject: [PATCH] [CMAKE] config.cmake: Fix 'STEQUAL' typo, in a comment Addendum to e90b6bb. --- sdk/cmake/config.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/cmake/config.cmake b/sdk/cmake/config.cmake index eaf193ca8f1..7bf236d08cb 100644 --- a/sdk/cmake/config.cmake +++ b/sdk/cmake/config.cmake @@ -71,7 +71,7 @@ elseif(CMAKE_C_COMPILER_ID STREQUAL "Clang") set(GCC TRUE CACHE BOOL "The compiler is GCC") endif() set(CLANG TRUE CACHE BOOL "The compiler is LLVM Clang") -elseif(MSVC) # aka CMAKE_C_COMPILER_ID STEQUAL "MSVC" +elseif(MSVC) # aka CMAKE_C_COMPILER_ID STREQUAL "MSVC" set(GCC FALSE CACHE BOOL "The compiler is GCC") set(CLANG FALSE CACHE BOOL "The compiler is LLVM Clang") # MSVC variable is already set by cmake