mirror of
https://github.com/luau-lang/luau.git
synced 2025-05-04 10:33:46 +01:00
Only build fuzzer with CMake if 3.26 is available
This commit is contained in:
parent
c755875479
commit
3927e79eef
1 changed files with 4 additions and 1 deletions
|
@ -1,5 +1,8 @@
|
||||||
# This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
|
# This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
|
||||||
cmake_minimum_required(VERSION 3.26)
|
if(${CMAKE_VERSION} VERSION_LESS "3.26")
|
||||||
|
message(WARNING "Building the Luau fuzzer requires Clang version 3.26 of higher.")
|
||||||
|
return()
|
||||||
|
endif()
|
||||||
|
|
||||||
include(FetchContent)
|
include(FetchContent)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue