Skip to content

Commit

Permalink
Fix confusing warning when CMake version is too low (#1251)
Browse files Browse the repository at this point in the history
Experienced brief moment of panic when this warning said I had clang 3
installed.
  • Loading branch information
bjornbytes committed May 10, 2024
1 parent 905a37b commit a775bbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 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()

Expand Down

0 comments on commit a775bbc

Please sign in to comment.