gplugin/gplugin

Add more details to basic plugin names

19 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('vapi')
if not get_option('introspection')
error('Vala generation requires GObject Introspection.')
endif
add_languages('vala', native: false)
gplugin_vapi = gnome.generate_vapi('gplugin',
sources : gplugin_gir[0],
install : true,
)
if get_option('gtk4').allowed()
gplugin_gtk4_vapi = gnome.generate_vapi('gplugin-gtk4',
sources : gplugin_gtk4_gir[0],
packages : [ 'gtk4' ],
install : true,
gir_dirs : meson.current_build_dir() / '..' / 'gplugin',
)
endif
subdir('tests')
endif # vala