[CMAKE] config.cmake: Fix 'STEQUAL' typo, in a comment

Addendum to e90b6bb.
This commit is contained in:
Serge Gautherie 2021-04-10 04:12:48 +02:00 committed by Stanislav Motylkov
parent f9c603db6e
commit c41007624f

View file

@ -71,7 +71,7 @@ elseif(CMAKE_C_COMPILER_ID STREQUAL "Clang")
set(GCC TRUE CACHE BOOL "The compiler is GCC") set(GCC TRUE CACHE BOOL "The compiler is GCC")
endif() endif()
set(CLANG TRUE CACHE BOOL "The compiler is LLVM Clang") 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(GCC FALSE CACHE BOOL "The compiler is GCC")
set(CLANG FALSE CACHE BOOL "The compiler is LLVM Clang") set(CLANG FALSE CACHE BOOL "The compiler is LLVM Clang")
# MSVC variable is already set by cmake # MSVC variable is already set by cmake