gplugin/gplugin

We don't need GModule in our gir file

2022-01-30, Gary Kramlich
1195da375abd
We don't need GModule in our gir file

Testing Done:
Compiled and made sure there was no reference to `GModule` in `GPlugin-1.0.gir`.

Reviewed at https://reviews.imfreedom.org/r/1252/
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