Skip to content

Commit

Permalink
cmake : fix version cmp (ggerganov#7227)
Browse files Browse the repository at this point in the history
  • Loading branch information
ggerganov committed May 12, 2024
1 parent b228aba commit 6f1b636
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ if (LLAMA_BLAS)
if (LLAMA_STATIC)
set(BLA_STATIC ON)
endif()
if ($(CMAKE_VERSION) VERSION_GREATER_EQUAL 3.22)
if (CMAKE_VERSION VERSION_GREATER_EQUAL 3.22)
set(BLA_SIZEOF_INTEGER 8)
endif()

Expand Down

0 comments on commit 6f1b636

Please sign in to comment.