aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CMakeLists.txt4
1 files changed, 3 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 2ca2385d8f..9f1829cf55 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -543,7 +543,9 @@ endif()
message(STATUS "Using Lua interpreter: ${LUA_PRG}")
-if(NOT WIN32)
+option(COMPILE_LUA "Pre-compile Lua sources into bytecode (for sources that are included in the binary)" ON)
+
+if(COMPILE_LUA AND NOT WIN32)
if(PREFER_LUA)
foreach(CURRENT_LUAC_PRG luac5.1 luac)
find_program(_CHECK_LUAC_PRG ${CURRENT_LUAC_PRG})