This repository has been archived on 2024-10-22. You can view files and clone it, but cannot push or open issues or pull requests.
YimMenu/cmake/lua.cmake
2024-08-27 16:39:46 +05:00

16 lines
325 B
CMake

include(FetchContent)
message("LuaJIT")
set(LUAJIT_BUILD_TOOL OFF)
FetchContent_Declare(
luajit
GIT_REPOSITORY https://github.com/WohlSoft/LuaJIT.git
GIT_TAG 27878965958986687f8caaf8a2b6b73bc5df85e0
GIT_PROGRESS TRUE
)
add_compile_definitions("_CRT_SECURE_NO_WARNINGS")
FetchContent_MakeAvailable(luajit)