Skip to content

Commit

Permalink
cmake build: fix nit
Browse files Browse the repository at this point in the history
reported by @jaimeMF in #3392 (comment)
  • Loading branch information
Cyan4973 committed Dec 23, 2022
1 parent 089b279 commit 6640377
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/cmake/CMakeModules/AddZstdCompilationFlags.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ macro(ADD_ZSTD_COMPILATION_FLAGS)
# EnableCompilerFlag("-std=c99" true false) # Set C compiation to c99 standard
if (CMAKE_CXX_COMPILER_ID MATCHES "Clang" AND MSVC)
# clang-cl normally maps -Wall to -Weverything.
EnableCompilerFlag("/clang:-Wall" true true flase)
EnableCompilerFlag("/clang:-Wall" true true false)
else ()
EnableCompilerFlag("-Wall" true true false)
endif ()
Expand Down

0 comments on commit 6640377

Please sign in to comment.