grim/gplugin

Set all log domains to use structured logging

2021-10-12, Elliott Sales de Andrade
9abe6ad22e9c
Set all log domains to use structured logging

* Add log domains to sublibraries
* Set all log domains to use structured logging

Testing Done:
Compile and simple run only; this has no real effect on GPlugin directly.

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