Skip to content

Commit

Permalink
Fix simdutf incompatible version message error
Browse files Browse the repository at this point in the history
  • Loading branch information
AbrilRBS authored and eliaskosunen committed May 20, 2024
1 parent 88892f3 commit 1f842a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmake/dependencies.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ if (SCN_USE_EXTERNAL_SIMDUTF)
# We're compatible with _at least_ v4 and v5
find_package(simdutf CONFIG REQUIRED)
if (simdutf_VERSION VERSION_LESS 4.0.0)
message(FATAL_ERROR "Incompatible version of simdutf: at least 3.0.0 required, found ${simdutf_VERSION}")
message(FATAL_ERROR "Incompatible version of simdutf: at least 4.0.0 required, found ${simdutf_VERSION}")
endif ()
else ()
FetchContent_Declare(
Expand Down

0 comments on commit 1f842a0

Please sign in to comment.