qulogic/gplugin

Merged in feature/convey-cleanup (pull request #18)
develop
2019-07-24, Gary Kramlich
57eea9e383c9
Merged in feature/convey-cleanup (pull request #18)

Update convey.yml for all the thingz

Approved-by: Elliott Sales de Andrade
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