Usa system provided Lua 5.2 if found
This commit is contained in:
parent
0b16ce725c
commit
a292793143
|
@ -3,11 +3,14 @@ project('lite', 'c', 'cpp', version: '1.06', default_options : ['c_std=gnu11', '
|
||||||
cc = meson.get_compiler('c')
|
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_dep = dependency('lua5.2', required : false)
|
||||||
|
|
||||||
|
if not lua_dep.found()
|
||||||
lua_subproject = subproject('lua', default_options: [
|
lua_subproject = subproject('lua', default_options: [
|
||||||
'default_library=static', 'use_readline=false'
|
'default_library=static', 'use_readline=false'
|
||||||
])
|
])
|
||||||
lua_dep = lua_subproject.get_variable('lua_dep')
|
lua_dep = lua_subproject.get_variable('lua_dep')
|
||||||
|
endif
|
||||||
|
|
||||||
sdl_dep = dependency('sdl2', method: 'config-tool')
|
sdl_dep = dependency('sdl2', method: 'config-tool')
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue