mirror of
https://github.com/luau-lang/luau.git
synced 2024-11-15 06:15:44 +08:00
Fix confusing warning when CMake version is too low (#1251)
Experienced brief moment of panic when this warning said I had clang 3 installed.
This commit is contained in:
parent
905a37b928
commit
a775bbc6fc
@ -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()
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user