gplugin/gplugin

Add GTK4 viewer outline

2021-10-09, Elliott Sales de Andrade
d926130c6d12
Add GTK4 viewer outline

This does nothing since the widget isn't implemented, but it's setup to use GTK4 paradigms.

Testing Done:
Compile and run `gplugin-gtk4-viewer` with the various options, and some temporary debug prints.

Reviewed at https://reviews.imfreedom.org/r/992/
if not get_option('install-gplugin-query')
summary('gplugin-query',
'You have disabled installation of gplugin-query which is a very ' +
'useful diagnostics tool.',
section : 'Warnings')
endif
gplugin_query = executable('gplugin-query',
'gplugin-query.c',
dependencies : [gplugin_dep, GLIB, GOBJECT],
install : get_option('install-gplugin-query'))
if get_option('help2man')
custom_target('gplugin-query.1',
command : [help2man,
'--name=Query installed plugins', '--section=1',
'--help-option=--help-all', '--no-info',
'--output', '@OUTPUT@',
gplugin_query],
output : 'gplugin-query.1',
install : get_option('install-gplugin-query'),
install_dir : get_option('mandir') / 'man1')
endif