doc/meson.build

Sat, 21 Nov 2020 22:54:04 -0600

author
Elliott Sales de Andrade <quantum.analyst@gmail.com>
date
Sat, 21 Nov 2020 22:54:04 -0600
changeset 40622
16bba33a970f
parent 40536
c0ea70247280
child 41105
02c3569bc32b
permissions
-rw-r--r--

Use GSubprocess to manager zephyr tzc command.

This is a straight conversion, and does not make any attempt to be more asynchronous, as I don't know the protocol between them, but I expect there are ways to reduce the blocking.

Testing Done:
Compile only.

Reviewed at https://reviews.imfreedom.org/r/247/

if ENABLE_DOC
	subdir('reference')
endif

if ENABLE_GTK
	pidgin_man = configure_file(
	    input : 'pidgin3.1.in',
	    output : 'pidgin3.1',
	    configuration : man_conf,
	    install : true,
	    install_dir : get_option('mandir') / 'man1')
endif

if enable_consoleui
	finch_man = configure_file(
	    input : 'finch3.1.in',
	    output : 'finch3.1',
	    configuration : man_conf,
	    install : true,
	    install_dir : get_option('mandir') / 'man1')
endif

mercurial