gplugin/gplugin

Added tag v0.0.28 for changeset 741a484ae91c
v0.28.0
2019-01-22, Gary Kramlich
0aec4b15554d
Added tag v0.0.28 for changeset 741a484ae91c
if get_option('lua')
e = executable('test-lua-loader', 'test-lua-loader.c',
c_args : [
'-DLUA_LOADER_DIR="@0@/lua"'.format(meson.build_root()),
'-DLUA_PLUGIN_DIR="@0@/lua-plugins"'.format(
meson.current_source_dir()),
'-DMOONSCRIPT_PLUGIN_DIR="@0@/moonscript-plugins"'.format(
meson.current_source_dir()),
],
link_with : gplugin_loader_tests,
dependencies : [GLIB, GOBJECT, LUA, gplugin_dep])
test('Lua Loader', e)
if get_option('moonscript-tests')
e = executable('test-lua-moon-loader', 'test-lua-moon-loader.c',
c_args : [
'-DLUA_LOADER_DIR="@0@/lua"'.format(meson.build_root()),
'-DLUA_PLUGIN_DIR="@0@/lua-plugins"'.format(
meson.current_source_dir()),
'-DMOONSCRIPT_PLUGIN_DIR="@0@/moonscript-plugins"'.format(
meson.current_source_dir()),
],
link_with : gplugin_loader_tests,
dependencies : [GLIB, GOBJECT, LUA, gplugin_dep])
test('Lua Moon Loader', e)
endif
endif # lua