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
Andreas Maerten 8ecbdaf7c0
refactor!: repo cleanup (#2650)
- Move cmake files to dedicated cmake folder
- Move scattered python files to `scripts/` folder
- Update CMakeLists.txt to reflect changes
* feat(scripts): add README to folder
2023-12-30 16:05:18 +01:00

13 lines
294 B
CMake

include(FetchContent)
message("Lua")
FetchContent_Declare(
Lua
GIT_REPOSITORY https://github.com/walterschell/Lua.git
GIT_TAG a2e0125df529894f5e25d7d477b2df4e37690e0f
GIT_PROGRESS TRUE
)
FetchContent_MakeAvailable(Lua)
set_property(TARGET lua_static PROPERTY CXX_STANDARD 23)