talkatu/talkatu

Fix some warnings related to g_action_group_query_action
default tip
9 months ago, Gary Kramlich
42ce88fc5ee3
Fix some warnings related to g_action_group_query_action

Testing Done:
Compiled and verified the warnings were gone. Also ran the unit tests.

Reviewed at https://reviews.imfreedom.org/r/2558/
if not get_option('doc')
subdir_done()
endif
talkatu_doc_content_files = []
talkatu_toml = configure_file(
input : 'talkatu.toml.in',
output : 'talkatu.toml',
configuration : version_conf,
install : true,
install_dir : docs_dir / 'talkatu',
)
talkatu_doc = custom_target('talkatu-doc',
input : [ talkatu_toml, talkatu_gir[0] ],
output : 'talkatu',
command : [
gidocgen,
'generate',
'--quiet',
'--fatal-warnings',
'--config=@INPUT0@',
'--output-dir=@OUTPUT@',
'--no-namespace-dir',
'--content-dir=@0@'.format(meson.current_source_dir()),
'@INPUT1@'
],
depend_files : [ talkatu_doc_content_files ],
build_by_default : true,
install : true,
install_dir : docs_dir,
)
doc_targets += talkatu_doc