aboutsummaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
authorJan <sentrycraft123@gmail.com>2023-08-25 04:33:39 +0200
committerGitHub <noreply@github.com>2023-08-24 22:33:39 -0400
commit6f05a386f8b2fdd6d6834560efb565acdd99bd02 (patch)
tree3b1a66e8dfcc53fb7d913e4092b34bcb4df5b12b /meson_options.txt
parentcb667af7567a6178e21a6df369eeea1be90b236e (diff)
downloadlite-xl-6f05a386f8b2fdd6d6834560efb565acdd99bd02.tar.gz
lite-xl-6f05a386f8b2fdd6d6834560efb565acdd99bd02.zip
Use Lua wrap by default (#1481)
Debian and all its derivatives ship a broken Lua 5.4 that is missing some symbols. To work around broken distros and make development and distribution easier use the wrap by default and add an option to use the system version.
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/meson_options.txt b/meson_options.txt
index 9cfcc353..ae9d8c6b 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -3,4 +3,5 @@ option('source-only', type : 'boolean', value : false, description: 'Configure s
option('portable', type : 'boolean', value : false, description: 'Portable install')
option('renderer', type : 'boolean', value : false, description: 'Use SDL renderer')
option('dirmonitor_backend', type : 'combo', value : '', choices : ['', 'inotify', 'fsevents', 'kqueue', 'win32', 'dummy'], description: 'define what dirmonitor backend to use')
-option('arch_tuple', type : 'string', value : '', description: 'Specify a custom architecture tuple') \ No newline at end of file
+option('arch_tuple', type : 'string', value : '', description: 'Specify a custom architecture tuple')
+option('use_system_lua', type : 'boolean', value : false, description: 'Prefer System Lua over a the meson wrap')