From 7c8bbb52dcf4fe161ba12dd81cf788ee2a0b068f Mon Sep 17 00:00:00 2001 From: iThorgrim <125808072+iThorgrim@users.noreply.github.com> Date: Tue, 14 Jan 2025 19:25:09 +0100 Subject: [PATCH] Fix(CMakeList): Set LUA_STATIC default to "ON" (#216) --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1ccb101..00b9b25 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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()