Fix lua subproject options removed by error

This commit is contained in:
Francesco Abbate 2021-08-24 19:04:48 +02:00
parent fc4c7a29ee
commit e23b6176f4
1 changed files with 3 additions and 1 deletions

View File

@ -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'],