mirror of
https://github.com/Mr-X-GTA/YimMenu.git
synced 2024-12-23 04:27:25 +08:00
13 lines
294 B
CMake
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)
|