Specified static library for Lua subproject
This commit is contained in:
parent
9a52b440f5
commit
0b16ce725c
|
@ -4,7 +4,9 @@ cc = meson.get_compiler('c')
|
||||||
libm = cc.find_library('m', required : false)
|
libm = cc.find_library('m', required : false)
|
||||||
libdl = cc.find_library('dl', required : false)
|
libdl = cc.find_library('dl', required : false)
|
||||||
|
|
||||||
lua_subproject = subproject('lua', default_options: ['use_readline=false'])
|
lua_subproject = subproject('lua', default_options: [
|
||||||
|
'default_library=static', 'use_readline=false'
|
||||||
|
])
|
||||||
lua_dep = lua_subproject.get_variable('lua_dep')
|
lua_dep = lua_subproject.get_variable('lua_dep')
|
||||||
|
|
||||||
sdl_dep = dependency('sdl2', method: 'config-tool')
|
sdl_dep = dependency('sdl2', method: 'config-tool')
|
||||||
|
|
Loading…
Reference in New Issue