Fix(CMakeList): Set LUA_STATIC default to "ON" (#216)

This commit is contained in:
iThorgrim
2025-01-14 19:25:09 +01:00
committed by GitHub
parent f9fc165c7d
commit 7c8bbb52dc

View File

@@ -7,7 +7,7 @@ if (CMAKE_VERSION VERSION_GREATER_EQUAL "3.24.0")
cmake_policy(SET CMP0135 NEW)
endif()
option(LUA_STATIC "link lua statically" OFF)
option(LUA_STATIC "link lua statically" ON)
if (LUA_STATIC)
MESSAGE(STATUS "Lua linking: static")
else()