From 17a1dc320e5da33c4454ffd2220265d98c6c1c56 Mon Sep 17 00:00:00 2001 From: bjorn Date: Fri, 10 May 2024 00:08:52 -0700 Subject: [PATCH] Fix confusing warning when CMake version is too low; --- fuzz/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fuzz/CMakeLists.txt b/fuzz/CMakeLists.txt index c18fbba5..be40b811 100644 --- a/fuzz/CMakeLists.txt +++ b/fuzz/CMakeLists.txt @@ -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()