From 17eadef99e8acefa7b63ce20a7869a1b2f347b10 Mon Sep 17 00:00:00 2001 From: Francesco Abbate Date: Sun, 3 Oct 2021 23:08:02 +0200 Subject: [PATCH] Disable build of luajit executable --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 22103790..d4418d08 100644 --- a/meson.build +++ b/meson.build @@ -50,7 +50,7 @@ if not get_option('source-only') libdl = cc.find_library('dl', required : false) threads_dep = dependency('threads') lua_dep = dependency('luajit', fallback: ['luajit', 'lua_dep'], - default_options: ['default_library=static'] + default_options: ['default_library=static', 'app=false'] ) pcre2_dep = dependency('libpcre2-8') sdl_dep = dependency('sdl2', method: 'config-tool')