From 5b1c3a4f47a8da15e288fe6c2da02340d267e5dd Mon Sep 17 00:00:00 2001 From: iThorgrim Date: Tue, 14 Jan 2025 16:51:43 +0100 Subject: [PATCH] Fix(CMakeList): Set LUA_STATIC default to "ON" --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1ccb101b53..00b9b25e26 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()