Fix confusing warning when CMake version is too low;

This commit is contained in:
bjorn 2024-05-10 00:08:52 -07:00
parent 905a37b928
commit 17a1dc320e

View file

@ -1,6 +1,6 @@
# This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
if(${CMAKE_VERSION} VERSION_LESS "3.26")
message(WARNING "Building the Luau fuzzer requires Clang version 3.26 of higher.")
message(WARNING "Building the Luau fuzzer requires CMake version 3.26 or higher.")
return()
endif()