https://git.reactos.org/?p=reactos.git;a=commitdiff;h=c41007624f96204ab6e4a0...
commit c41007624f96204ab6e4a061824ab22be39cf3e4 Author: Serge Gautherie reactos-git_serge_171003@gautherie.fr AuthorDate: Sat Apr 10 04:12:48 2021 +0200 Commit: Stanislav Motylkov x86corez@gmail.com CommitDate: Tue Apr 27 10:36:54 2021 +0300
[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