Skip to content

Commit

Permalink
Fix(CMakeList): Set LUA_STATIC default to "ON" (#216)
Browse files Browse the repository at this point in the history
  • Loading branch information
iThorgrim authored Jan 14, 2025
1 parent f9fc165 commit 7c8bbb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 7c8bbb5

Please sign in to comment.