gplugin/gplugin

Add more details to basic plugin names

20 months ago, Elliott Sales de Andrade
7cd3caa3f514
Add more details to basic plugin names

Just so there aren't "basic plugin" a bunch of times over in the list.

Testing Done:
Checked viewer and ran `ninja test`.

Reviewed at https://reviews.imfreedom.org/r/1837/
if get_option('lua')
e = executable('test-lua-loader', 'test-lua-loader.c',
c_args : [
'-DLUA_LOADER_DIR="@0@/.."'.format(meson.current_build_dir()),
'-DLUA_PLUGIN_DIR="@0@/plugins"'.format(
meson.current_source_dir()),
],
link_with : gplugin_loader_tests,
dependencies : [GLIB, GOBJECT, LUA, gplugin_dep])
test('Lua Loader', e)
# Add the test plugins path to our environment variable
devenv.append('GPLUGIN_PLUGIN_PATH', meson.current_source_dir() / 'plugins')
endif # lua