summary refs log tree commit diff stats
path: root/plugins/lua/meson.build
blob: 7faa305458b75fccfb32f32f9029964c5746c3f6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
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: '',
)