gplugin/gplugin

Fix namespace for get_id_normalized

2021-10-06, Elliott Sales de Andrade
ff990c41a00f
Fix namespace for get_id_normalized

This previously ended up at the top level, as an unnamespaced function.

Testing Done:
Compiled, and see that this is no longer in the top-level functions, but in `GPlugin.PluginInfo`.

Reviewed at https://reviews.imfreedom.org/r/1000/
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('gtk3')
gplugin_gtk_vapi = gnome.generate_vapi('gplugin-gtk3',
sources : gplugin_gtk3_gir[0],
packages : [ 'gtk+-3.0' ],
install : true,
gir_dirs : meson.current_build_dir() / '..' / 'gplugin',
)
endif
subdir('tests')
endif # vala