Files
zoitechat/plugins/lua/meson.build
2026-01-05 23:12:38 -07:00

13 lines
276 B
Meson

if cc.get_id() == 'msvc'
lua_dep = cc.find_library('lua51')
else
lua_dep = dependency(get_option('with-lua'))
endif
shared_module('lua', 'lua.c',
dependencies: [libgio_dep, zoitechat_plugin_dep, lua_dep],
install: true,
install_dir: plugindir,
name_prefix: '',
)