From e23b6176f4921a9f086cb94ee81b79a73ed414f2 Mon Sep 17 00:00:00 2001 From: Francesco Abbate Date: Tue, 24 Aug 2021 19:04:48 +0200 Subject: [PATCH] Fix lua subproject options removed by error --- meson.build | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 20067d43..0c5bc865 100644 --- a/meson.build +++ b/meson.build @@ -51,7 +51,9 @@ endif #=============================================================================== libm = cc.find_library('m', required : false) libdl = cc.find_library('dl', required : false) -lua_dep = dependency('lua5.2', fallback: ['lua', 'lua_dep']) +lua_dep = dependency('lua5.2', fallback: ['lua', 'lua_dep'], + default_options: ['shared=false', 'use_readline=false', 'app=false'] +) pcre2_dep = dependency('libpcre2-8') sdl_dep = dependency('sdl2', method: 'config-tool') reproc_dep = dependency('reproc', fallback: ['reproc', 'reproc_dep'],