Feature #20 » 0015-Meson-Stop-looking-for-sys-lua-when-it-s-disabled.patch
| meson.build | ||
|---|---|---|
|
'lua5.4'
|
||
|
]
|
||
|
foreach cand : slua_candidates
|
||
|
lua_dep_tmp = dependency(cand, required:false)
|
||
|
if lua_dep_tmp.found()
|
||
|
break
|
||
|
endif
|
||
|
endforeach
|
||
|
if syslua != 'false'
|
||
|
foreach cand : slua_candidates
|
||
|
lua_dep_tmp = dependency(cand, required:false)
|
||
|
if lua_dep_tmp.found()
|
||
|
break
|
||
|
endif
|
||
|
endforeach
|
||
|
endif
|
||
|
if syslua != 'false' and lua_dep_tmp.found()
|
||
|
lua_inc_path = []
|
||
- « Previous
- 1
- 2
- Next »