mirror of
https://github.com/ZoiteChat/zoitechat.git
synced 2026-03-10 07:50:19 +00:00
13 lines
274 B
Meson
13 lines
274 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, hexchat_plugin_dep, lua_dep],
|
||
|
|
install: true,
|
||
|
|
install_dir: plugindir,
|
||
|
|
name_prefix: '',
|
||
|
|
)
|